[llvm-commits] CVS: llvm/lib/Target/ARM/ARMInstrInfo.td

2006-09-06 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMInstrInfo.td updated: 1.21 - 1.22 --- Log message: add the orr instruction --- Diffs of the changes: (+4 -0) ARMInstrInfo.td |4 1 files changed, 4 insertions(+) Index: llvm/lib/Target/ARM/ARMInstrInfo.td diff -u

[llvm-commits] CVS: llvm/lib/Target/IA64/IA64AsmPrinter.cpp

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/Target/IA64: IA64AsmPrinter.cpp updated: 1.33 - 1.34 --- Log message: Separate target specific asm properties from the asm printers. --- Diffs of the changes: (+15 -6) IA64AsmPrinter.cpp | 21 +++-- 1 files changed, 15 insertions(+), 6

[llvm-commits] CVS: llvm/include/llvm/Target/TargetAsmInfo.h

2006-09-06 Thread Jim Laskey
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h added (r1.1) --- Log message: Separate target specifc asm properties from asm printers. --- Diffs of the changes: (+427 -0) TargetAsmInfo.h | 427 1 files changed, 427

[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcAsmPrinter.cpp

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/Target/Sparc: SparcAsmPrinter.cpp updated: 1.66 - 1.67 --- Log message: Separate target specific asm properties from the asm printers. --- Diffs of the changes: (+12 -4) SparcAsmPrinter.cpp | 16 1 files changed, 12 insertions(+), 4

[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/Target/Alpha: AlphaAsmPrinter.cpp updated: 1.46 - 1.47 --- Log message: Separate target specific asm properties from the asm printers. --- Diffs of the changes: (+14 -7) AlphaAsmPrinter.cpp | 21 ++--- 1 files changed, 14 insertions(+), 7

[llvm-commits] CVS: llvm/Xcode/LLVM.xcodeproj/project.pbxproj

2006-09-06 Thread Jim Laskey
Changes in directory llvm/Xcode/LLVM.xcodeproj: project.pbxproj updated: 1.22 - 1.23 --- Log message: Update project with new files. --- Diffs of the changes: (+5 -3) project.pbxproj |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) Index:

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

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.90 - 1.91 DwarfWriter.cpp updated: 1.73 - 1.74 --- Log message: Separate target specific asm properties from the asm printers. --- Diffs of the changes: (+169 -212) AsmPrinter.cpp | 237

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

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.58 - 1.59 X86ATTAsmPrinter.h updated: 1.13 - 1.14 X86AsmPrinter.cpp updated: 1.192 - 1.193 X86AsmPrinter.h updated: 1.27 - 1.28 X86IntelAsmPrinter.cpp updated: 1.52 - 1.53 X86IntelAsmPrinter.h updated: 1.21 - 1.22 --- Log

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

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/Target/ARM: ARMAsmPrinter.cpp updated: 1.14 - 1.15 --- Log message: Separate target specific asm properties from the asm printers. --- Diffs of the changes: (+12 -4) ARMAsmPrinter.cpp | 16 1 files changed, 12 insertions(+), 4 deletions(-)

[llvm-commits] CVS: llvm/docs/CodeGenerator.html

2006-09-06 Thread Bill Wendling
Changes in directory llvm/docs: CodeGenerator.html updated: 1.36 - 1.37 --- Log message: Cleaned up some of the grammar in the Live Intervals section. Removed the huge honking FIXME comment. I'll address the Live Intervals Analysis section soon. --- Diffs of the changes: (+36 -146)

[llvm-commits] CVS: llvm/tools/lto/lto.cpp

2006-09-06 Thread Devang Patel
Changes in directory llvm/tools/lto: lto.cpp updated: 1.10 - 1.11 --- Log message: Keep track of all modules crated using a name to module map. Add private member function getMoudle(). --- Diffs of the changes: (+18 -1) lto.cpp | 19 ++- 1 files changed, 18

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

2006-09-06 Thread Devang Patel
Changes in directory llvm/include/llvm: LinkTimeOptimizer.h updated: 1.5 - 1.6 --- Log message: Keep track of all modules crated using a name to module map. Add private member function getMoudle(). --- Diffs of the changes: (+6 -0) LinkTimeOptimizer.h |6 ++ 1 files changed, 6

[llvm-commits] CVS: llvm/lib/Target/TargetAsmInfo.cpp

2006-09-06 Thread Jim Laskey
Changes in directory llvm/lib/Target: TargetAsmInfo.cpp updated: 1.1 - 1.2 --- Log message: Oops - forgot to update banner. --- Diffs of the changes: (+1 -1) TargetAsmInfo.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/TargetAsmInfo.cpp diff -u

[llvm-commits] CVS: llvm/tools/lto/lto.cpp

2006-09-06 Thread Devang Patel
Changes in directory llvm/tools/lto: lto.cpp updated: 1.11 - 1.12 --- Log message: Add getTargetTriple() that linker can use to query target architecture. --- Diffs of the changes: (+11 -0) lto.cpp | 11 +++ 1 files changed, 11 insertions(+) Index: llvm/tools/lto/lto.cpp diff

[llvm-commits] CVS: llvm/docs/LinkTimeOptimization.html

2006-09-06 Thread Devang Patel
Changes in directory llvm/docs: LinkTimeOptimization.html updated: 1.6 - 1.7 --- Log message: Document getTargetTriple(). --- Diffs of the changes: (+12 -1) LinkTimeOptimization.html | 13 - 1 files changed, 12 insertions(+), 1 deletion(-) Index:

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

2006-09-06 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86CodeEmitter.cpp updated: 1.115 - 1.116 --- Log message: Variable ops instructions may ignore the last few operands for code emission. --- Diffs of the changes: (+3 -1) X86CodeEmitter.cpp |4 +++- 1 files changed, 3 insertions(+), 1

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

2006-09-06 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86CodeEmitter.cpp updated: 1.116 - 1.117 --- Log message: Watch out for variable_ops instructions. --- Diffs of the changes: (+1 -1) X86CodeEmitter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/465.tonto/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/465.tonto: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+2 -2) Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/470.lbm/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/470.lbm: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/444.namd/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/444.namd: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+2 -7) Makefile |9 ++--- 1 files changed, 2 insertions(+), 7 deletions(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/471.omnetpp/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CINT2006/471.omnetpp: Makefile updated: 1.2 - 1.3 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+3 -0) Makefile |3 +++ 1 files changed, 3 insertions(+) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/450.soplex/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/450.soplex: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+4 -3) Makefile |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/453.povray/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/453.povray: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+4 -2) Makefile |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/482.sphinx3/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/482.sphinx3: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+2 -2) Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/481.wrf/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CFP2006/481.wrf: Makefile updated: 1.1 - 1.2 --- Log message: Modified Makefiles to handle multiple directories. --- Diffs of the changes: (+56 -7) Makefile | 63 --- 1 files

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/test-load-fold.ll

2006-09-06 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/X86: test-load-fold.ll added (r1.1) --- Log message: testcase, ensure this never breaks. --- Diffs of the changes: (+29 -0) test-load-fold.ll | 29 + 1 files changed, 29 insertions(+) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CINT2006/400.perlbench: Makefile updated: 1.2 - 1.3 --- Log message: Add the perlbench benchmark test to the SPEC2006 testing thingy. --- Diffs of the changes: (+13 -8) Makefile | 21 + 1 files changed, 13 insertions(+), 8

[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CINT2006: Makefile updated: 1.1 - 1.2 --- Log message: Add the perlbench benchmark test to the SPEC2006 testing thingy. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile

2006-09-06 Thread Bill Wendling
Changes in directory llvm-test/External/SPEC/CINT2006/400.perlbench: Makefile updated: 1.3 - 1.4 --- Log message: Change STDOUT_FILENAME to one which exists in the data/test/output directory so that we don't get an error during testing. --- Diffs of the changes: (+5 -1) Makefile |6

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

2006-09-06 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86CodeEmitter.cpp updated: 1.117 - 1.118 --- Log message: Clean up. --- Diffs of the changes: (+2 -2) X86CodeEmitter.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Target/X86/X86CodeEmitter.cpp diff -u

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-09-06-SwitchLowering.ll

2006-09-06 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/Generic: 2006-09-06-SwitchLowering.ll added (r1.1) --- Log message: New testcase for a switch lowering bug. --- Diffs of the changes: (+96 -0) 2006-09-06-SwitchLowering.ll | 96 +++ 1 files

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

2006-09-06 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAGISel.cpp updated: 1.272 - 1.273 --- Log message: Fix CodeGen/Generic/2006-09-06-SwitchLowering.ll, a bug where SDIsel inserted too many phi operands when lowering a switch to branches in some cases. --- Diffs of the changes:

[llvm-commits] CVS: llvm/docs/GettingStarted.html

2006-09-06 Thread Chris Lattner
Changes in directory llvm/docs: GettingStarted.html updated: 1.144 - 1.145 --- Log message: cleanups and updates to the GSG, patch by B Scott Michel, thanks! This is PR899: http://llvm.org/PR899 --- Diffs of the changes: (+53 -42) GettingStarted.html | 95

[llvm-commits] CVS: llvm/lib/Assembly/Parser/

2006-09-06 Thread LLVM
Changes in directory llvm/lib/Assembly/Parser: --- Log message: Directory /var/cvs/llvm/llvm/lib/Assembly/Parser added to the repository --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu