Changes in directory llvm/lib/Analysis:

ScalarEvolution.cpp updated: 1.88 -> 1.89
---
Log message:

Unbreak VC++ build.

---
Diffs of the changes:  (+1 -1)

 ScalarEvolution.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Analysis/ScalarEvolution.cpp
diff -u llvm/lib/Analysis/ScalarEvolution.cpp:1.88 
llvm/lib/Analysis/ScalarEvolution.cpp:1.89
--- llvm/lib/Analysis/ScalarEvolution.cpp:1.88  Sun Jan 14 20:27:26 2007
+++ llvm/lib/Analysis/ScalarEvolution.cpp       Mon Jan 15 14:27:18 2007
@@ -1929,7 +1929,7 @@
     // Couldn't symbolically evaluate.
     if (!CondVal) return UnknownValue;
 
-    if (CondVal->getZExtValue() == ExitWhen) {
+    if (CondVal->getZExtValue() == uint64_t(ExitWhen)) {
       ConstantEvolutionLoopExitValue[PN] = PHIVal;
       ++NumBruteForceTripCountsComputed;
       return SCEVConstant::get(ConstantInt::get(Type::Int32Ty, IterationNum));



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to