]> granicus.if.org Git - llvm/commitdiff
[ORC] NFC remove unimplemented query
authorPraveen Velliengiri <praveenvelliengiri@gmail.com>
Tue, 27 Aug 2019 17:51:50 +0000 (17:51 +0000)
committerPraveen Velliengiri <praveenvelliengiri@gmail.com>
Tue, 27 Aug 2019 17:51:50 +0000 (17:51 +0000)
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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370085 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h

index 2652bff72a629e815b3eaad8cf858f991f671727..76ecb2218ef51642768640f0ac64e1ac6c6f9c9a 100644 (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