1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

[ORC] NFC remove unimplemented query

Summary: CFGWalk Query is unimplemented for valid reasons. But the declaration got included in commit file.

Reviewers: lhames, dblaikie

Reviewed By: dblaikie

Subscribers: llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D66289

llvm-svn: 370085
This commit is contained in:
Praveen Velliengiri 2019-08-27 17:51:50 +00:00
parent 2f041a67b9
commit 54e79945ee

View File

@ -35,13 +35,6 @@ public:
ResultTy operator()(Function &F, FunctionAnalysisManager &FAM);
};
// Walk the CFG by exploting BranchProbabilityInfo
class CFGWalkQuery {
public:
using ResultTy = Optional<DenseMap<StringRef, DenseSet<StringRef>>>;
ResultTy operator()(Function &F, FunctionAnalysisManager &FAM);
};
} // namespace orc
} // namespace llvm