Get even more accurate on the casting.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 12 Dec 2006 09:17:50 +0000 (09:17 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 12 Dec 2006 09:17:50 +0000 (09:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32478 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolution.cpp

index 703a1c46e9a9fb9c05282a7ee5ecca6ce9c258eb..46b8f2629c3b4223ade75dca69af4ee869b76a4e 100644 (file)
@@ -1567,8 +1567,7 @@ SCEVHandle ScalarEvolutionsImpl::ComputeIterationCount(const Loop *L) {
         ConstantInt *CompVal = RHSC->getValue();
         const Type *RealTy = ExitCond->getOperand(0)->getType();
         CompVal = dyn_cast<ConstantInt>(
-          ConstantExpr::getIntegerCast(CompVal, RealTy, 
-                                       CompVal->getType()->isSigned()));
+          ConstantExpr::getBitCast(CompVal, RealTy));
         if (CompVal) {
           // Form the constant range.
           ConstantRange CompRange(Cond, CompVal);
@@ -1577,12 +1576,10 @@ SCEVHandle ScalarEvolutionsImpl::ComputeIterationCount(const Loop *L) {
           // range.
           if (CompRange.getLower()->getType()->isSigned()) {
             const Type *NewTy = RHSC->getValue()->getType();
-            Constant *NewL = 
-              ConstantExpr::getIntegerCast(CompRange.getLower(), NewTy, 
-                 CompRange.getLower()->getType()->isSigned());
-            Constant *NewU = 
-              ConstantExpr::getIntegerCast(CompRange.getUpper(), NewTy,
-                 CompRange.getUpper()->getType()->isSigned());
+            Constant *NewL = ConstantExpr::getBitCast(CompRange.getLower(), 
+                                                      NewTy);
+            Constant *NewU = ConstantExpr::getBitCast(CompRange.getUpper(), 
+                                                      NewTy);
             CompRange = ConstantRange(NewL, NewU);
           }