From 466f80f1fcc5af8b6d6b4a11505d2c0374ea98b7 Mon Sep 17 00:00:00 2001 From: Nick Kledzik Date: Fri, 7 Nov 2014 22:00:26 +0000 Subject: [PATCH] [mach-o] remove stray debug output llvm-svn: 221553 --- lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp b/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp index 86b9c3d28e54..8bdee4e446a9 100644 --- a/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp +++ b/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp @@ -856,14 +856,11 @@ MachOLinkingContext::findOrderOrdinal(const std::vector &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; } }