summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2008-05-13 22:51:04 +0000
committerEric Christopher <echristo@apple.com>2008-05-13 22:51:04 +0000
commite3fc3858a2e9d6483a68a6696d07f29ccc799cce (patch)
treeb39f69d99b2e70d61be93db90e0e8eac87e5117b /include
parent2527e884169eee65f790a16b81daca2d5652eb6d (diff)
downloadllvm-e3fc3858a2e9d6483a68a6696d07f29ccc799cce.tar.gz
llvm-e3fc3858a2e9d6483a68a6696d07f29ccc799cce.tar.bz2
llvm-e3fc3858a2e9d6483a68a6696d07f29ccc799cce.tar.xz
Make this function public.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/SparsePropagation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/SparsePropagation.h b/include/llvm/Analysis/SparsePropagation.h
index cad18d79bf..dea81b1e88 100644
--- a/include/llvm/Analysis/SparsePropagation.h
+++ b/include/llvm/Analysis/SparsePropagation.h
@@ -146,6 +146,10 @@ public:
///
LatticeVal getOrInitValueState(Value *V);
+ /// isEdgeFeasible - Return true if the control flow edge from the 'From'
+ /// basic block to the 'To' basic block is currently feasible...
+ bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
+
private:
/// UpdateState - When the state for some instruction is potentially updated,
/// this function notices and adds I to the worklist if needed.
@@ -163,10 +167,6 @@ private:
/// successors are reachable from a given terminator instruction.
void getFeasibleSuccessors(TerminatorInst &TI, SmallVectorImpl<bool> &Succs);
- /// isEdgeFeasible - Return true if the control flow edge from the 'From'
- /// basic block to the 'To' basic block is currently feasible...
- bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
-
void visitInst(Instruction &I);
void visitPHINode(PHINode &I);
void visitTerminatorInst(TerminatorInst &TI);