[lld] r242092 - Remove commented out code.
Michael J. Spencer
bigcheesegs at gmail.com
Mon Jul 13 17:11:38 PDT 2015
Author: mspencer
Date: Mon Jul 13 19:11:38 2015
New Revision: 242092
URL: http://llvm.org/viewvc/llvm-project?rev=242092&view=rev
Log:
Remove commented out code.
Modified:
lld/trunk/ELF/Driver.cpp
Modified: lld/trunk/ELF/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Driver.cpp?rev=242092&r1=242091&r2=242092&view=diff
==============================================================================
--- lld/trunk/ELF/Driver.cpp (original)
+++ lld/trunk/ELF/Driver.cpp Mon Jul 13 19:11:38 2015
@@ -205,17 +205,6 @@ bool LinkerDriver::link(llvm::ArrayRef<c
}
}
- // Resolve auxiliary symbols until converge.
- // (Trying to resolve a symbol may trigger a Lazy symbol to load a new file.
- // A new file may contain a directive section to add new command line options.
- // That's why we have to repeat until converge.)
- /*for (;;) {
- size_t Ver = Symtab.getVersion();
-
- if (Ver == Symtab.getVersion())
- break;
- }*/
-
// Make sure we have resolved all symbols.
if (Symtab.reportRemainingUndefines())
return false;
More information about the llvm-commits
mailing list