Remove commented out code.

llvm-svn: 242092
This commit is contained in:
Michael J. Spencer 2015-07-14 00:11:38 +00:00
parent 486fa3977a
commit 64661cdb4c
1 changed files with 0 additions and 11 deletions

View File

@ -205,17 +205,6 @@ bool LinkerDriver::link(llvm::ArrayRef<const char *> ArgsArr) {
}
}
// 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;