mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-18 12:25:47 +00:00
Change PHINode::hasConstantValue to have a DominatorTree argument
instead of a bool argument, and to do the dominator check itself. This makes it eaiser to use when DominatorTree information is available. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80920 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -429,13 +429,10 @@ BasicBlock *llvm::SplitBlockPredecessors(BasicBlock *BB,
|
||||
PN->addIncoming(InVal, NewBB);
|
||||
|
||||
// Check to see if we can eliminate this phi node.
|
||||
if (Value *V = PN->hasConstantValue(DT != 0)) {
|
||||
Instruction *I = dyn_cast<Instruction>(V);
|
||||
if (!I || DT == 0 || DT->dominates(I, PN)) {
|
||||
PN->replaceAllUsesWith(V);
|
||||
if (AA) AA->deleteValue(PN);
|
||||
PN->eraseFromParent();
|
||||
}
|
||||
if (Value *V = PN->hasConstantValue(DT)) {
|
||||
PN->replaceAllUsesWith(V);
|
||||
if (AA) AA->deleteValue(PN);
|
||||
PN->eraseFromParent();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user