Use getConstant for ConstantInts.

llvm-svn: 47361
This commit is contained in:
Nick Lewycky 2008-02-20 06:58:55 +00:00
parent 1c44ebcf86
commit b0a2f9513f
1 changed files with 2 additions and 2 deletions

View File

@ -522,7 +522,7 @@ SCEVHandle ScalarEvolution::getNegativeSCEV(const SCEVHandle &V) {
if (SCEVConstant *VC = dyn_cast<SCEVConstant>(V)) if (SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
return getUnknown(ConstantExpr::getNeg(VC->getValue())); return getUnknown(ConstantExpr::getNeg(VC->getValue()));
return getMulExpr(V, getUnknown(ConstantInt::getAllOnesValue(V->getType()))); return getMulExpr(V, getConstant(ConstantInt::getAllOnesValue(V->getType())));
} }
/// getNotSCEV - Return a SCEV corresponding to ~V = -1-V /// getNotSCEV - Return a SCEV corresponding to ~V = -1-V
@ -530,7 +530,7 @@ SCEVHandle ScalarEvolution::getNotSCEV(const SCEVHandle &V) {
if (SCEVConstant *VC = dyn_cast<SCEVConstant>(V)) if (SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
return getUnknown(ConstantExpr::getNot(VC->getValue())); return getUnknown(ConstantExpr::getNot(VC->getValue()));
SCEVHandle AllOnes = getUnknown(ConstantInt::getAllOnesValue(V->getType())); SCEVHandle AllOnes = getConstant(ConstantInt::getAllOnesValue(V->getType()));
return getMinusSCEV(AllOnes, V); return getMinusSCEV(AllOnes, V);
} }