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; } }