We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0990d5b commit 47258ffCopy full SHA for 47258ff
llvm/lib/Object/DXContainer.cpp
@@ -24,7 +24,7 @@ static Error readStruct(StringRef Buffer, const char *P, T &Struct) {
24
return parseFailed("Reading structure out of file bounds");
25
26
memcpy(&Struct, P, sizeof(T));
27
- // DXContainer is always BigEndian
+ // DXContainer is always little endian
28
if (sys::IsBigEndianHost)
29
Struct.byteSwap();
30
return Error::success();
0 commit comments