[PATCH] D45197: Change which file we print when a symbol cannot be ordered

Rui Ueyama via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 2 19:41:44 PDT 2018


ruiu added inline comments.


================
Comment at: ELF/Writer.cpp:1055
       SymbolOrderEntry &Ent = It->second;
+      if (Ent.Present && !Sym->isLocal())
+        continue;
----------------
This is perhaps better?

  if (File != Sym->File)


https://reviews.llvm.org/D45197





More information about the llvm-commits mailing list