Skip to content

Commit 47258ff

Browse files
committed
[NFC] correcting a code comment.
1 parent 0990d5b commit 47258ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/DXContainer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static Error readStruct(StringRef Buffer, const char *P, T &Struct) {
2424
return parseFailed("Reading structure out of file bounds");
2525

2626
memcpy(&Struct, P, sizeof(T));
27-
// DXContainer is always BigEndian
27+
// DXContainer is always little endian
2828
if (sys::IsBigEndianHost)
2929
Struct.byteSwap();
3030
return Error::success();

0 commit comments

Comments
 (0)