[llvm-commits] CVS: llvm-test/Makefile.config.in

2006-09-02 Thread Chris Lattner
Changes in directory llvm-test: Makefile.config.in updated: 1.21 - 1.22 --- Log message: disable this for now. Without autoconf being run, this breaks the nightly testers. --- Diffs of the changes: (+1 -1) Makefile.config.in |2 +- 1 files changed, 1 insertion(+), 1 deletion(-)

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-09-02 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.3 - 1.4 --- Log message: improve compat with certain versions of GCC (on cygwin?) --- Diffs of the changes: (+1 -1) MachOWriter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/test/Regression/Transforms/PredicateSimplifier/2006-08-02-Switch.ll predsimplify.ll

2006-09-02 Thread Nick Lewycky
Changes in directory llvm/test/Regression/Transforms/PredicateSimplifier: 2006-08-02-Switch.ll added (r1.1) predsimplify.ll updated: 1.1 - 1.2 --- Log message: Improve handling of SelectInst. Reorder operations to remove duplicated work. Fix to leave floating-point types out of the

[llvm-commits] CVS: llvm/lib/Transforms/Scalar/PredicateSimplifier.cpp

2006-09-02 Thread Nick Lewycky
Changes in directory llvm/lib/Transforms/Scalar: PredicateSimplifier.cpp updated: 1.4 - 1.5 --- Log message: Improve handling of SelectInst. Reorder operations to remove duplicated work. Fix to leave floating-point types out of the optimization. Add tests to predsimplify.ll for SwitchInst and

[llvm-commits] CVS: llvm/lib/Target/ARM/ARM.h ARMISelDAGToDAG.cpp

2006-09-02 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARM.h updated: 1.3 - 1.4 ARMISelDAGToDAG.cpp updated: 1.38 - 1.39 --- Log message: add more condition codes --- Diffs of the changes: (+30 -2) ARM.h | 30 -- ARMISelDAGToDAG.cpp |2 ++ 2 files

[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/branch.ll

2006-09-02 Thread Rafael Espindola
Changes in directory llvm/test/Regression/CodeGen/ARM: branch.ll updated: 1.1 - 1.2 --- Log message: add more condition codes --- Diffs of the changes: (+33 -3) branch.ll | 36 +--- 1 files changed, 33 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/test/Regression/Transforms/ArgumentPromotion/recursion.ll

2006-09-02 Thread Owen Anderson
Changes in directory llvm/test/Regression/Transforms/ArgumentPromotion: recursion.ll added (r1.1) --- Log message: Make ArgumentPromotion handle recursive functions that pass pointers in their recursive calls. --- Diffs of the changes: (+16 -0) recursion.ll | 16 1

[llvm-commits] CVS: llvm/lib/Transforms/IPO/ArgumentPromotion.cpp

2006-09-02 Thread Owen Anderson
Changes in directory llvm/lib/Transforms/IPO: ArgumentPromotion.cpp updated: 1.22 - 1.23 --- Log message: Make ArgumentPromotion handle recursive functions that pass pointers in their recursive calls. --- Diffs of the changes: (+33 -11) ArgumentPromotion.cpp | 44

[llvm-commits] CVS: llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h

2006-09-02 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: LiveIntervalAnalysis.h updated: 1.59 - 1.60 --- Log message: Fix a typo pointed out by Gabor --- Diffs of the changes: (+1 -1) LiveIntervalAnalysis.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/test/Regression/Transforms/ArgumentPromotion/recursion.ll

2006-09-02 Thread Owen Anderson
Changes in directory llvm/test/Regression/Transforms/ArgumentPromotion: recursion.ll updated: 1.1 - 1.2 --- Log message: Make this testcase actually recursive. I accidentally committed the wrong copy last time. --- Diffs of the changes: (+2 -1) recursion.ll |3 ++- 1 files changed,

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-09-02 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.68 - 1.69 --- Log message: Count the time for a pass to ReleaseMemory against that pass. Not doing this was under accounting for the time that livevariables cost --- Diffs of the changes: (+2 -0) PassManagerT.h |2 ++ 1

[llvm-commits] CVS: llvm-www/Features.html

2006-09-02 Thread Chris Lattner
Changes in directory llvm-www: Features.html updated: 1.16 - 1.17 --- Log message: clean this up --- Diffs of the changes: (+11 -8) Features.html | 19 +++ 1 files changed, 11 insertions(+), 8 deletions(-) Index: llvm-www/Features.html diff -u

[llvm-commits] CVS: llvm/include/llvm/CodeGen/LiveVariables.h

2006-09-02 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: LiveVariables.h updated: 1.28 - 1.29 --- Log message: Move two methods out of line, make them work when the record for a machine instruction includes physregs. --- Diffs of the changes: (+6 -28) LiveVariables.h | 34

[llvm-commits] CVS: llvm/lib/CodeGen/LiveVariables.cpp

2006-09-02 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: LiveVariables.cpp updated: 1.57 - 1.58 --- Log message: Move two methods out of line, make them work when the record for a machine instruction includes physregs. --- Diffs of the changes: (+36 -0) LiveVariables.cpp | 36

[llvm-commits] CVS: llvm/lib/CodeGen/RegAllocLocal.cpp

2006-09-02 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: RegAllocLocal.cpp updated: 1.86 - 1.87 --- Log message: When deleting a machine instruction, make sure to remove it from the livevariables information. This fixes several regalloc=local failures on x86 --- Diffs of the changes: (+4 -1)