[PATCH] D14586: [elf2] Implement global dynamic tls.

Rafael Ávila de Espíndola via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 12 15:58:46 PST 2015


rafael added inline comments.

================
Comment at: ELF/OutputSections.cpp:182
@@ -178,3 +181,3 @@
 
-    InputSectionBase<ELFT> &C = Rel.C;
-    const Elf_Rel &RI = Rel.RI;
+    if (!Rel.C || !Rel.RI)
+      continue;
----------------
Add a comment about this being a placeholder for the second entry in a gd pair (which was handled in the previous iteration.


http://reviews.llvm.org/D14586





More information about the llvm-commits mailing list