[PATCH] D59269: ELF: Use bump pointer allocator for uncompressed section buffers. NFCI.
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 13 11:15:54 PDT 2019
ruiu 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;
};
----------------
grimar wrote:
> Not relative to this patch, but I wonder why this is an `int64_t` and not a `uint64_t`.
To represent -1 as -1, I guess?
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