mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Make this function public.
llvm-svn: 51077
This commit is contained in:
parent
bae88af8c1
commit
4b7ff26ffd
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user