[llvm] Fix compress/decompress in LLVM Offloading API (PR #150064)

James Henderson via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 20 00:37:17 PDT 2025


================
@@ -69,7 +104,7 @@ Error OffloadBundleFatBin::readEntries(StringRef Buffer,
                                        uint64_t SectionOffset) {
   uint64_t NumOfEntries = 0;
 
-  BinaryStreamReader Reader(Buffer, llvm::endianness::little);
+  BinaryStreamReader Reader(Buffer, endianness::little);
----------------
jh7370 wrote:

Standard practice is not to change lines unrelated to the actual behaviour change you want in the same commit, unless they're immediately adjacent the rest of the code changes, because it can muddy the waters of the blame history. Formatting and minor nits like this probably should be in a separate PR, if they're worth doing at all.

https://github.com/llvm/llvm-project/pull/150064


More information about the llvm-commits mailing list