mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
eliminate some non-obvious casts. UndefValue isa Constant.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113113 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e971131695
commit
906a675db8
@ -443,8 +443,8 @@ ComputeValueKnownInPredecessors(Value *V, BasicBlock *BB,PredValueInfo &Result){
|
||||
|
||||
// Try to use constant folding to simplify the binary operator.
|
||||
for (unsigned i = 0, e = LHSVals.size(); i != e; ++i) {
|
||||
Constant *V = LHSVals[i].first ? LHSVals[i].first :
|
||||
cast<Constant>(UndefValue::get(BO->getType()));
|
||||
Constant *V = LHSVals[i].first;
|
||||
if (V == 0) V = UndefValue::get(BO->getType());
|
||||
Constant *Folded = ConstantExpr::get(BO->getOpcode(), V, CI);
|
||||
|
||||
PushConstantIntOrUndef(Result, Folded, LHSVals[i].second);
|
||||
@ -518,8 +518,8 @@ ComputeValueKnownInPredecessors(Value *V, BasicBlock *BB,PredValueInfo &Result){
|
||||
ComputeValueKnownInPredecessors(I->getOperand(0), BB, LHSVals);
|
||||
|
||||
for (unsigned i = 0, e = LHSVals.size(); i != e; ++i) {
|
||||
Constant *V = LHSVals[i].first ? LHSVals[i].first :
|
||||
cast<Constant>(UndefValue::get(CmpConst->getType()));
|
||||
Constant *V = LHSVals[i].first;
|
||||
if (V == 0) V = UndefValue::get(CmpConst->getType());
|
||||
Constant *Folded = ConstantExpr::getCompare(Cmp->getPredicate(),
|
||||
V, CmpConst);
|
||||
PushConstantIntOrUndef(Result, Folded, LHSVals[i].second);
|
||||
|
Loading…
Reference in New Issue
Block a user