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

2006-07-14 Thread Owen Anderson
Changes in directory llvm/lib/Transforms/Scalar: IndVarSimplify.cpp updated: 1.87 -> 1.88 --- Log message: Hopefully the final attempt at making IndVars preserve LCSSA. This should fix PR 831: http://llvm.org/PR831 . --- Diffs of the changes: (+30 -2) IndVarSimplify.cpp | 32 +++

[llvm-commits] CVS: llvm/include/llvm/Constants.h

2006-07-14 Thread Chris Lattner
Changes in directory llvm/include/llvm: Constants.h updated: 1.83 -> 1.84 --- Log message: Add a new method for bugpoint to use. --- Diffs of the changes: (+5 -0) Constants.h |5 + 1 files changed, 5 insertions(+) Index: llvm/include/llvm/Constants.h diff -u llvm/include/llvm/Con

[llvm-commits] CVS: llvm/lib/VMCore/Constants.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Constants.cpp updated: 1.155 -> 1.156 --- Log message: Add a new method for bugpoint to use --- Diffs of the changes: (+51 -0) Constants.cpp | 51 +++ 1 files changed, 51 insertions(+) Index: llvm/lib

[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl

2006-07-14 Thread Patrick Jenkins
Changes in directory llvm/utils: NewNightlyTest.pl updated: 1.11 -> 1.12 --- Log message: Fixed an issue where the user specified gcc was not the gcc we report to the nightly test server. --- Diffs of the changes: (+10 -2) NewNightlyTest.pl | 12 ++-- 1 files changed, 10 insert

[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.cgi

2006-07-14 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTestAccept.cgi updated: 1.11 -> 1.12 --- Log message: We will now send out an email to the nightly test email archive about submitted tests --- Diffs of the changes: (+11 -0) NightlyTestAccept.cgi | 11 +++ 1 files changed, 11

[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.cgi

2006-07-14 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTestAccept.cgi updated: 1.12 -> 1.13 --- Log message: made the title of the email to the nightly test email archive more descriptive --- Diffs of the changes: (+1 -1) NightlyTestAccept.cgi |2 +- 1 files changed, 1 insertion(+), 1 del

[llvm-commits] CVS: llvm/include/llvm/Constants.h

2006-07-14 Thread Chris Lattner
Changes in directory llvm/include/llvm: Constants.h updated: 1.84 -> 1.85 --- Log message: Add another helper method. --- Diffs of the changes: (+4 -0) Constants.h |4 1 files changed, 4 insertions(+) Index: llvm/include/llvm/Constants.h diff -u llvm/include/llvm/Constants.h:1.8

[llvm-commits] CVS: llvm/lib/VMCore/Constants.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Constants.cpp updated: 1.156 -> 1.157 --- Log message: Add a new helper, simplify ConstantExpr::getWithOperandReplaced at Gabor's request :) --- Diffs of the changes: (+57 -22) Constants.cpp | 79 +-

[llvm-commits] CVS: llvm/lib/Transforms/Utils/ValueMapper.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Utils: ValueMapper.cpp updated: 1.26 -> 1.27 --- Log message: eliminate some ugly code, using ConstantExpr::getWithOperands instead. --- Diffs of the changes: (+4 -35) ValueMapper.cpp | 39 --- 1 files changed,

[llvm-commits] CVS: llvm/lib/Linker/LinkModules.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/Linker: LinkModules.cpp updated: 1.115 -> 1.116 --- Log message: eliminate some ugly code, using ConstantExpr::getWithOperands instead. --- Diffs of the changes: (+4 -51) LinkModules.cpp | 55 --- 1 files

[llvm-commits] CVS: llvm/include/llvm/ADT/StringExtras.h

2006-07-14 Thread Chris Lattner
Changes in directory llvm/include/llvm/ADT: StringExtras.h updated: 1.33 -> 1.34 --- Log message: Add two helper functions --- Diffs of the changes: (+9 -0) StringExtras.h |9 + 1 files changed, 9 insertions(+) Index: llvm/include/llvm/ADT/StringExtras.h diff -u llvm/include/

[llvm-commits] CVS: llvm/lib/Support/StringExtras.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/Support: StringExtras.cpp updated: 1.3 -> 1.4 --- Log message: Add two helpers for escaping and unescaping strings. --- Diffs of the changes: (+50 -0) StringExtras.cpp | 50 ++ 1 files changed, 50 insertions(+)

[llvm-commits] CVS: llvm/utils/TableGen/AsmWriterEmitter.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: AsmWriterEmitter.cpp updated: 1.28 -> 1.29 --- Log message: Emit the string information for the asm writer as a single large string and index into it, instead of emitting it like this: static const char * const OpStrs[] = { "PHINODE\n",//

[llvm-commits] CVS: llvm/lib/Target/X86/X86AsmPrinter.cpp X86AsmPrinter.h

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.cpp updated: 1.188 -> 1.189 X86AsmPrinter.h updated: 1.22 -> 1.23 --- Log message: Add an out-of-line virtual method for X86DwarfWriter to give it a home. --- Diffs of the changes: (+21 -19) X86AsmPrinter.cpp |4 X86AsmPrinte

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

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineFunction.cpp updated: 1.95 -> 1.96 --- Log message: Add an out-of-line virtual function to home class. --- Diffs of the changes: (+2 -0) MachineFunction.cpp |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/CodeGen/MachineFunction.c

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

2006-07-14 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: MachineFunctionPass.h updated: 1.4 -> 1.5 --- Log message: Add an out-of-line virtual function to home class. --- Diffs of the changes: (+2 -1) MachineFunctionPass.h |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/in

[llvm-commits] CVS: llvm/utils/TableGen/AsmWriterEmitter.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: AsmWriterEmitter.cpp updated: 1.29 -> 1.30 --- Log message: The generated index array should be const. --- Diffs of the changes: (+1 -1) AsmWriterEmitter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/utils/TableGen/Asm

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC.h PPCAsmPrinter.cpp PPCSubtarget.cpp PPCSubtarget.h PPCTargetMachine.cpp

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPC.h updated: 1.29 -> 1.30 PPCAsmPrinter.cpp updated: 1.186 -> 1.187 PPCSubtarget.cpp updated: 1.24 -> 1.25 PPCSubtarget.h updated: 1.16 -> 1.17 PPCTargetMachine.cpp updated: 1.97 -> 1.98 --- Log message: Remove what little AIX support we have. It

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

2006-07-14 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.83 -> 1.84 --- Log message: On 64-bit targets like ppc64, we should use .quad to output pointer directives, not .long. --- Diffs of the changes: (+9 -1) AsmPrinter.cpp | 10 +- 1 files changed, 9 insertions(+), 1 de