now that @GOTOFF is no longer represented as a suffix on a
[oota-llvm.git] / lib / Analysis / ScalarEvolution.cpp
index 81928c1fe6fd9ed3c792ff65b5a98cdfc58b3906..1fb966132bd576b9ad9c38064e18b3b887284545 100644 (file)
@@ -2351,7 +2351,7 @@ const SCEV *ScalarEvolution::getSCEV(Value *V) {
 
 /// getIntegerSCEV - Given a SCEVable type, create a constant for the
 /// specified signed integer value and return a SCEV for the constant.
-const SCEV *ScalarEvolution::getIntegerSCEV(int Val, const Type *Ty) {
+const SCEV *ScalarEvolution::getIntegerSCEV(int64_t Val, const Type *Ty) {
   const IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
   return getConstant(ConstantInt::get(ITy, Val));
 }