[PATCH] [lld] [ELF/AArch64] Fix local TLS relocations

Rui Ueyama ruiu at google.com
Tue May 26 10:57:35 PDT 2015


LGTM


================
Comment at: lib/ReaderWriter/ELF/AArch64/AArch64RelocationHandler.h:31
@@ +30,3 @@
+  // Cached size of the TLS segment.
+  mutable uint64_t _tlsSize;
+  AArch64TargetLayout &_layout;
----------------
Let's use C++11 non-member initialization:

  mutable uint64_t _tlsSize = 0;

http://reviews.llvm.org/D10030

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/






More information about the llvm-commits mailing list