[PATCH] D30892: [ELF] - Make Bss and BssRelRo sections to be synthetic (#3).

Rui Ueyama via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 14 10:17:04 PDT 2017


ruiu accepted this revision.
ruiu added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: ELF/SyntheticSections.h:166
   size_t getSize() const override { return Size; }
-  size_t Size;
+  size_t Size = 0;
 };
----------------
Make this private if you are always accessing this via getSize.


https://reviews.llvm.org/D30892





More information about the llvm-commits mailing list