[PATCH] D59269: ELF: Use bump pointer allocator for uncompressed section buffers. NFCI.

George Rimar via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 13 01:25:18 PDT 2019


grimar added inline comments.


================
Comment at: ELF/InputSection.h:217
+  // Since the feature is not used often, this is usually -1.
+  mutable int64_t UncompressedSize = -1;
 };
----------------
Not relative to this patch, but I wonder why this is an `int64_t` and not a `uint64_t`.


Repository:
  rLLD LLVM Linker

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59269/new/

https://reviews.llvm.org/D59269





More information about the llvm-commits mailing list