[PATCH] D45802: COFF: Preserve section type when processing /section flag.
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 19 10:02:39 PDT 2018
ruiu accepted this revision.
ruiu added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: lld/COFF/Chunks.h:45
+// Mask for section types (code, data, bss).
+const uint32_t TypeMask = 0x000000E0;
----------------
Thank you for correcting the bit masks (from 0xF to 0xE).
https://reviews.llvm.org/D45802
More information about the llvm-commits
mailing list