mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 15:13:49 -04:00
[ORC] Remove a dead method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367716 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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});
|
||||
|
||||
Reference in New Issue
Block a user