[mach-o] remove stray debug output

llvm-svn: 221553
This commit is contained in:
Nick Kledzik 2014-11-07 22:00:26 +00:00
parent f04ab0a244
commit 466f80f1fc
1 changed files with 0 additions and 3 deletions

View File

@ -856,14 +856,11 @@ MachOLinkingContext::findOrderOrdinal(const std::vector<OrderFileNode> &nodes,
if (info.fileFilter.empty()) {
// Have unprefixed symbol name in order file that matches this atom.
ordinal = info.order;
llvm::errs() << "ordered " << atom->name() << "\n";
return true;
}
if (info.fileFilter.equals(objName)) {
// Have prefixed symbol name in order file that matches atom's path.
ordinal = info.order;
llvm::errs() << "ordered " << atom->name() << " with prefix '"
<< info.fileFilter << "'\n";
return true;
}
}