[lld] r221553 - [mach-o] remove stray debug output

Nick Kledzik kledzik at apple.com
Fri Nov 7 14:00:26 PST 2014


Author: kledzik
Date: Fri Nov  7 16:00:26 2014
New Revision: 221553

URL: http://llvm.org/viewvc/llvm-project?rev=221553&view=rev
Log:
[mach-o] remove stray debug output

Modified:
    lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp

Modified: lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp?rev=221553&r1=221552&r2=221553&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp (original)
+++ lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp Fri Nov  7 16:00:26 2014
@@ -856,14 +856,11 @@ MachOLinkingContext::findOrderOrdinal(co
     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;
     }
   }





More information about the llvm-commits mailing list