From 5f1da1b3a7b3ca0b3b3eef79b07ef76d68914fb4 Mon Sep 17 00:00:00 2001 From: Praveen Velliengiri Date: Tue, 27 Aug 2019 17:51:50 +0000 Subject: [PATCH] [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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370085 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h b/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h index 2652bff72a6..76ecb2218ef 100644 --- a/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h +++ b/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h @@ -35,13 +35,6 @@ public: ResultTy operator()(Function &F, FunctionAnalysisManager &FAM); }; -// Walk the CFG by exploting BranchProbabilityInfo -class CFGWalkQuery { -public: - using ResultTy = Optional>>; - ResultTy operator()(Function &F, FunctionAnalysisManager &FAM); -}; - } // namespace orc } // namespace llvm -- 2.40.0