From: Lang Hames Date: Fri, 16 Aug 2019 19:33:37 +0000 (+0000) Subject: [ORC] Remove some stray debugging output accidentally left in r368707 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef1d6c5f338a6abbb6da2d8b1b26afb6e50bf860;p=llvm [ORC] Remove some stray debugging output accidentally left in r368707 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@369141 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/Orc/Core.cpp b/lib/ExecutionEngine/Orc/Core.cpp index 23dac7a1206..5d1e574ea96 100644 --- a/lib/ExecutionEngine/Orc/Core.cpp +++ b/lib/ExecutionEngine/Orc/Core.cpp @@ -1236,11 +1236,9 @@ Error JITDylib::lodgeQuery(std::shared_ptr &Q, if (!NewDefs) return NewDefs.takeError(); - llvm::dbgs() << "NewDefs is " << *NewDefs << "\n"; if (!NewDefs->empty()) { for (auto &D : *NewDefs) Unresolved.erase(D); - llvm::dbgs() << "NewDefs is now " << *NewDefs << "\n"; lodgeQueryImpl(Q, *NewDefs, MatchNonExported, MUs); assert(NewDefs->empty() && "All fallback defs should have been found by lookupImpl");