[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2007-02-28 Thread LLVM
Changes in directory llvm/lib/Analysis: ConstantRange.cpp (r1.37) removed --- Log message: Move ConstantRange class to lib/Support from lib/Analysis and make its interface not depend on Type or ICmpInst. --- Diffs of the changes: (+0 -0) 0 files changed

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp ScalarEvolution.cpp

2007-02-28 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.36 -> 1.37 ScalarEvolution.cpp updated: 1.94 -> 1.95 --- Log message: For PR1205: http://llvm.org/PR1205 : Remove ConstantInt from ConstantRange interface and adjust its users to compensate. --- Diffs of the changes: (+30 -

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp ScalarEvolution.cpp

2007-02-28 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.35 -> 1.36 ScalarEvolution.cpp updated: 1.93 -> 1.94 --- Log message: For PR1205: http://llvm.org/PR1205 : First round of ConstantRange changes. This makes all CR constructors use only APInt and not use ConstantInt. Clients ar

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2007-02-28 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.34 -> 1.35 --- Log message: For PR1205: http://llvm.org/PR1205 : Convert ConstantRange class to use APInt internally as its value type for the constant range, instead of ConstantInt. --- Diffs of the changes: (+127 -138)

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2007-02-10 Thread Nick Lewycky
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.33 -> 1.34 --- Log message: Fix comments to match names of functions. --- Diffs of the changes: (+2 -2) ConstantRange.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Analysis/ConstantRa

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp ScalarEvolution.cpp

2007-01-19 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.32 -> 1.33 ScalarEvolution.cpp updated: 1.89 -> 1.90 --- Log message: For PR1043: http://llvm.org/PR1043 : This is the final patch for this PR. It implements some minor cleanup in the use of IntegerType, to wit: 1. Type::getI

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp ScalarEvolution.cpp ScalarEvolutionExpander.cpp

2007-01-14 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.31 -> 1.32 ScalarEvolution.cpp updated: 1.87 -> 1.88 ScalarEvolutionExpander.cpp updated: 1.11 -> 1.12 --- Log message: rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger. rename Type::getIntegralT

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp ScalarEvolution.cpp

2007-01-14 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.30 -> 1.31 ScalarEvolution.cpp updated: 1.86 -> 1.87 --- Log message: Update code to eliminate calls to isInteger, calling isIntegral instead. --- Diffs of the changes: (+12 -17) ConstantRange.cpp |2 +- ScalarEvolu

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2007-01-14 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.29 -> 1.30 --- Log message: Fix correlated exprs regressions --- Diffs of the changes: (+2 -2) ConstantRange.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Analysis/ConstantRange.cpp d

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2007-01-12 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.28 -> 1.29 --- Log message: remove unneeded special cases --- Diffs of the changes: (+0 -7) ConstantRange.cpp |7 --- 1 files changed, 7 deletions(-) Index: llvm/lib/Analysis/ConstantRange.cpp diff -u llvm/lib/A

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2007-01-07 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.24 -> 1.25 --- Log message: Fix a bug in an assert that would never trigger. --- Diffs of the changes: (+1 -1) ConstantRange.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Analysis/Constan

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp ScalarEvolution.cpp

2007-01-07 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.23 -> 1.24 ScalarEvolution.cpp updated: 1.80 -> 1.81 --- Log message: Convert uses of getPrimitiveSize that should be getPrimitiveSizeInBits. --- Diffs of the changes: (+14 -15) ConstantRange.cpp | 17

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2006-12-06 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.19 -> 1.20 --- Log message: Adjust to new ConstantIntegral interface for Max/Min tests. --- Diffs of the changes: (+56 -10) ConstantRange.cpp | 66 +- 1 files changed,

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2006-12-03 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.18 -> 1.19 --- Log message: Change inferred casts to explicit casts. --- Diffs of the changes: (+5 -9) ConstantRange.cpp | 14 +- 1 files changed, 5 insertions(+), 9 deletions(-) Index: llvm/lib/Analysis/C

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2006-11-28 Thread Bill Wendling
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.17 -> 1.18 --- Log message: WTF? These weird newlines got in there... --- Diffs of the changes: (+0 -26) ConstantRange.cpp | 26 -- 1 files changed, 26 deletions(-) Index: llvm/lib/Analysis/Con

[llvm-commits] CVS: llvm/lib/Analysis/ConstantRange.cpp

2006-09-28 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ConstantRange.cpp updated: 1.14 -> 1.15 --- Log message: Simplify some code --- Diffs of the changes: (+2 -2) ConstantRange.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Analysis/ConstantRange.cpp diff -u llvm/li