From 47258ffc5c7aa9ae2017bdde58a88e0f928d8f07 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Wed, 18 May 2022 08:51:44 -0500 Subject: [PATCH] [NFC] correcting a code comment. --- llvm/lib/Object/DXContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Object/DXContainer.cpp b/llvm/lib/Object/DXContainer.cpp index e1aea56296f6..2c43f519dd94 100644 --- a/llvm/lib/Object/DXContainer.cpp +++ b/llvm/lib/Object/DXContainer.cpp @@ -24,7 +24,7 @@ static Error readStruct(StringRef Buffer, const char *P, T &Struct) { return parseFailed("Reading structure out of file bounds"); memcpy(&Struct, P, sizeof(T)); - // DXContainer is always BigEndian + // DXContainer is always little endian if (sys::IsBigEndianHost) Struct.byteSwap(); return Error::success();