forked from OSchip/llvm-project
[ORC] Remove some stray debugging output accidentally left in r368707
llvm-svn: 369141
This commit is contained in:
parent
39eb2324f7
commit
9bb9a0c10b
|
@ -1236,11 +1236,9 @@ Error JITDylib::lodgeQuery(std::shared_ptr<AsynchronousSymbolQuery> &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");
|
||||
|
|
Loading…
Reference in New Issue