forked from OSchip/llvm-project
parent
de9b1d7912
commit
10430f4174
|
@ -638,7 +638,6 @@ private:
|
|||
void addQuery(std::shared_ptr<AsynchronousSymbolQuery> Q);
|
||||
void removeQuery(const AsynchronousSymbolQuery &Q);
|
||||
AsynchronousSymbolQueryList takeQueriesMeeting(SymbolState RequiredState);
|
||||
AsynchronousSymbolQueryList takeAllQueries();
|
||||
bool hasQueriesPending() const { return !PendingQueries.empty(); }
|
||||
const AsynchronousSymbolQueryList &pendingQueries() const {
|
||||
return PendingQueries;
|
||||
|
|
|
@ -1486,13 +1486,6 @@ JITDylib::MaterializingInfo::takeQueriesMeeting(SymbolState RequiredState) {
|
|||
return Result;
|
||||
}
|
||||
|
||||
JITDylib::AsynchronousSymbolQueryList
|
||||
JITDylib::MaterializingInfo::takeAllQueries() {
|
||||
AsynchronousSymbolQueryList Result;
|
||||
std::swap(Result, PendingQueries);
|
||||
return Result;
|
||||
}
|
||||
|
||||
JITDylib::JITDylib(ExecutionSession &ES, std::string Name)
|
||||
: ES(ES), JITDylibName(std::move(Name)) {
|
||||
SearchOrder.push_back({this, true});
|
||||
|
|
Loading…
Reference in New Issue