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

2007-05-07 Thread Jeff Cohen
Changes in directory llvm/lib/Support: MemoryBuffer.cpp updated: 1.5 - 1.6 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+2 -0) MemoryBuffer.cpp |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/Support/MemoryBuffer.cpp diff -u

[llvm-commits] CVS: llvm/win32/llvm.sln

2007-05-07 Thread Jeff Cohen
Changes in directory llvm/win32: llvm.sln updated: 1.29 - 1.30 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+18 -18) llvm.sln | 36 ++-- 1 files changed, 18 insertions(+), 18 deletions(-) Index: llvm/win32/llvm.sln diff -u

[llvm-commits] CVS: llvm/win32/Support/Support.vcproj

2007-05-07 Thread Jeff Cohen
Changes in directory llvm/win32/Support: Support.vcproj updated: 1.20 - 1.21 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+0 -43) Support.vcproj | 43 --- 1 files changed, 43 deletions(-) Index:

[llvm-commits] CVS: llvm/win32/Archive/Archive.vcproj

2007-05-07 Thread Jeff Cohen
Changes in directory llvm/win32/Archive: Archive.vcproj added (r1.1) --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+135 -0) Archive.vcproj | 135 + 1 files changed, 135 insertions(+) Index:

[llvm-commits] CVS: llvm/win32/Bytecode/Bytecode.vcproj

2007-05-07 Thread LLVM
Changes in directory llvm/win32/Bytecode: Bytecode.vcproj (r1.7) removed --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu

[llvm-commits] CVS: llvm/include/llvm/Support/DataTypes.h.in

2007-05-07 Thread Jeff Cohen
Changes in directory llvm/include/llvm/Support: DataTypes.h.in updated: 1.27 - 1.28 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -0) DataTypes.h.in |1 + 1 files changed, 1 insertion(+) Index: llvm/include/llvm/Support/DataTypes.h.in diff -u

[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/tramp3d-v4/Makefile

2007-05-07 Thread Lauro Ramos Venancio
Changes in directory llvm-test/MultiSource/Benchmarks/tramp3d-v4: Makefile updated: 1.4 - 1.5 --- Log message: Reduce memory usage. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/CREDITS.TXT

2007-05-07 Thread Evan Cheng
Changes in directory llvm: CREDITS.TXT updated: 1.79 - 1.80 --- Log message: Update. --- Diffs of the changes: (+1 -0) CREDITS.TXT |1 + 1 files changed, 1 insertion(+) Index: llvm/CREDITS.TXT diff -u llvm/CREDITS.TXT:1.79 llvm/CREDITS.TXT:1.80 --- llvm/CREDITS.TXT:1.79 Sun May

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

2007-05-07 Thread Reid Spencer
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.34 - 1.35 --- Log message: Initialize variable to null so it has a value in the off chance that a memory buffer couldn't be allocated. --- Diffs of the changes: (+1 -1) llvm-prof.cpp |2 +- 1 files changed, 1

[llvm-commits] CVS: CVSROOT/loginfo

2007-05-07 Thread John Criswell
Changes in directory CVSROOT: loginfo updated: 1.16 - 1.17 --- Log message: Commits for the internal CVS repository should not be made public. --- Diffs of the changes: (+1 -1) loginfo |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: CVSROOT/loginfo diff -u

[llvm-commits] CVS: llvm/test/CodeGen/X86/2007-05-07-InvokeSRet.ll

2007-05-07 Thread Duncan Sands
Changes in directory llvm/test/CodeGen/X86: 2007-05-07-InvokeSRet.ll added (r1.1) --- Log message: Testcase for PR1398: http://llvm.org/PR1398 . --- Diffs of the changes: (+15 -0) 2007-05-07-InvokeSRet.ll | 15 +++ 1 files changed, 15 insertions(+) Index:

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

2007-05-07 Thread Duncan Sands
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAGISel.cpp updated: 1.448 - 1.449 --- Log message: Parameter attributes on invoke calls were being lost due to the wrong attribute index being used. Fix proposed by Anton Korobeynikov, who asked me to implement and commit it for

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

2007-05-07 Thread Dale Johannesen
Changes in directory llvm/lib/CodeGen: BranchFolding.cpp updated: 1.49 - 1.50 --- Log message: Handle some non-exit blocks in tail merging. --- Diffs of the changes: (+81 -11) BranchFolding.cpp | 92 +++--- 1 files changed, 81

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

2007-05-07 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.299 - 1.300 --- Log message: Enable a couple of xforms: - (store (bitconvert v)) - (store v) if resultant store does not require higher alignment - (bitconvert (load v)) - (load (bitconvert*)v) if resultant load

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

2007-05-07 Thread Evan Cheng
Changes in directory llvm/lib/Target/ARM: ARMInstrVFP.td updated: 1.3 - 1.4 --- Log message: This is no longer needed after enabling the DAG combiner xform. --- Diffs of the changes: (+0 -5) ARMInstrVFP.td |5 - 1 files changed, 5 deletions(-) Index:

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

2007-05-07 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.300 - 1.301 --- Log message: Forgot a check. --- Diffs of the changes: (+1 -1) DAGCombiner.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

[llvm-commits] [126991] Unbreak Apple style build.

2007-05-07 Thread echeng
Revision: 126991 Author: echeng Date: 2007-05-07 14:17:06 -0700 (Mon, 07 May 2007) Log Message: --- Unbreak Apple style build. Modified Paths: -- apple-local/branches/llvm/gcc/llvm-linker-hack.cpp Modified: apple-local/branches/llvm/gcc/llvm-linker-hack.cpp

[llvm-commits] CVS: llvm/test/CodeGen/Generic/2007-05-05-Personality.ll

2007-05-07 Thread Evan Cheng
Changes in directory llvm/test/CodeGen/Generic: 2007-05-05-Personality.ll updated: 1.1 - 1.2 --- Log message: Fix test case. --- Diffs of the changes: (+1 -1) 2007-05-05-Personality.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

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

2007-05-07 Thread Evan Cheng
Changes in directory llvm/test/CodeGen/ARM: fptoint.ll updated: 1.1 - 1.2 --- Log message: Add some tests for (conv (load x)) - (load (conv*)x) xform. --- Diffs of the changes: (+18 -10) fptoint.ll | 28 ++-- 1 files changed, 18 insertions(+), 10 deletions(-)

[llvm-commits] CVS: llvm/test/CodeGen/ARM/fp.ll fpmem.ll

2007-05-07 Thread Evan Cheng
Changes in directory llvm/test/CodeGen/ARM: fp.ll updated: 1.16 - 1.17 fpmem.ll updated: 1.6 - 1.7 --- Log message: Fix tests. --- Diffs of the changes: (+7 -9) fp.ll|3 +-- fpmem.ll | 13 ++--- 2 files changed, 7 insertions(+), 9 deletions(-) Index:

[llvm-commits] CVS: llvm-test/TEST.llc.Makefile TEST.llc.report

2007-05-07 Thread Evan Cheng
Changes in directory llvm-test: TEST.llc.Makefile updated: 1.6 - 1.7 TEST.llc.report updated: 1.13 - 1.14 --- Log message: Update. --- Diffs of the changes: (+4 -2) TEST.llc.Makefile |2 +- TEST.llc.report |4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) Index:

[llvm-commits] [126993] Unbreak Apple style build.

2007-05-07 Thread echeng
Revision: 126993 Author: echeng Date: 2007-05-07 15:23:43 -0700 (Mon, 07 May 2007) Log Message: --- Unbreak Apple style build. Modified Paths: -- apple-local/branches/llvm/gcc/llvm-linker-hack.cpp Modified: apple-local/branches/llvm/gcc/llvm-linker-hack.cpp

[llvm-commits] [126994] Do not apply inreg attribute to static chain.

2007-05-07 Thread dpatel
Revision: 126994 Author: dpatel Date: 2007-05-07 15:27:34 -0700 (Mon, 07 May 2007) Log Message: --- Do not apply inreg attribute to static chain. Patch by Duncan Sands. Modified Paths: -- apple-local/branches/llvm/gcc/llvm-types.cpp Modified:

Re: [llvm-commits] [llvm-gcc] static chain changes for PR1146

2007-05-07 Thread Devang Patel
Applied. - Devang On May 7, 2007, at 1:15 AM, Duncan Sands wrote: Hi Reid, I'm working on PR1146. It remove parameter attributes from function types and places them on functions can call/invoke instructions. Consequently, some changes are needed in llvm-gcc. One of those changes I'm

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

2007-05-07 Thread Lauro Ramos Venancio
Changes in directory llvm/lib/Target/ARM: ARMRegisterInfo.cpp updated: 1.94 - 1.95 --- Log message: Fix PR1390: http://llvm.org/PR1390 in a better way. --- Diffs of the changes: (+41 -12) ARMRegisterInfo.cpp | 53 1 files changed,

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

2007-05-07 Thread Evan Cheng
Thanks! Evan On May 7, 2007, at 4:15 PM, Lauro Ramos Venancio wrote: Changes in directory llvm/lib/Target/ARM: ARMRegisterInfo.cpp updated: 1.94 - 1.95 --- Log message: Fix PR1390: http://llvm.org/PR1390 in a better way. --- Diffs of the changes: (+41 -12) ARMRegisterInfo.cpp

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

2007-05-07 Thread Dale Johannesen
Changes in directory llvm/lib/Transforms/Scalar: CodeGenPrepare.cpp updated: 1.10 - 1.11 --- Log message: Don't generate branch to entry block. --- Diffs of the changes: (+3 -1) CodeGenPrepare.cpp |4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/test/CodeGen/Generic/2007-05-07-tailmerge-1.c

2007-05-07 Thread Chris Lattner
Changes in directory llvm/test/CodeGen/Generic: 2007-05-07-tailmerge-1.c (r1.1) removed --- Log message: move to CodeGen/ARM/2007-05-07-tailmerge-1.ll --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list

[llvm-commits] CVS: llvm/test/CodeGen/ARM/2007-05-07-tailmerge-1.ll

2007-05-07 Thread Chris Lattner
Changes in directory llvm/test/CodeGen/ARM: 2007-05-07-tailmerge-1.ll added (r1.1) --- Log message: move this out of Codegen/Generic, because it requires the ARM backend to be linked into llc --- Diffs of the changes: (+65 -0) 2007-05-07-tailmerge-1.ll | 65

Re: [llvm-commits] CVS: llvm/test/CodeGen/ARM/fp.ll fpmem.ll

2007-05-07 Thread Chris Lattner
nice! -Chris On May 7, 2007, at 2:50 PM, Evan Cheng wrote: Changes in directory llvm/test/CodeGen/ARM: fp.ll updated: 1.16 - 1.17 fpmem.ll updated: 1.6 - 1.7 --- Log message: Fix tests. --- Diffs of the changes: (+7 -9) fp.ll|3 +-- fpmem.ll | 13 ++--- 2

[llvm-commits] CVS: llvm/autoconf/configure.ac

2007-05-07 Thread Tanya Lattner
Changes in directory llvm/autoconf: configure.ac updated: 1.269 - 1.270 --- Log message: Bump version number in cvs --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/autoconf/configure.ac diff -u

[llvm-commits] CVS: llvm-test/autoconf/configure.ac

2007-05-07 Thread Tanya Lattner
Changes in directory llvm-test/autoconf: configure.ac updated: 1.44 - 1.45 --- Log message: Bump version number in cvs. --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm-test/autoconf/configure.ac diff -u

[llvm-commits] CVS: llvm/configure

2007-05-07 Thread Tanya Lattner
Changes in directory llvm: configure updated: 1.275 - 1.276 --- Log message: Bumping cvs version number --- Diffs of the changes: (+9 -9) configure | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) Index: llvm/configure diff -u llvm/configure:1.275

[llvm-commits] CVS: llvm-test/configure

2007-05-07 Thread Tanya Lattner
Changes in directory llvm-test: configure updated: 1.46 - 1.47 --- Log message: Bumping version number --- Diffs of the changes: (+36 -36) configure | 72 +++--- 1 files changed, 36 insertions(+), 36 deletions(-) Index:

[llvm-commits] [release_20] CVS: llvm-test/autoconf/configure.ac

2007-05-07 Thread Tanya Lattner
Changes in directory llvm-test/autoconf: configure.ac updated: 1.44 - 1.44.2.1 --- Log message: Setting version number --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm-test/autoconf/configure.ac diff -u

[llvm-commits] [release_20] CVS: llvm-test/configure

2007-05-07 Thread Tanya Lattner
Changes in directory llvm-test: configure updated: 1.46 - 1.46.2.1 --- Log message: Setting release version --- Diffs of the changes: (+36 -36) configure | 72 +++--- 1 files changed, 36 insertions(+), 36 deletions(-) Index:

[llvm-commits] [release_20] CVS: llvm/autoconf/configure.ac

2007-05-07 Thread Tanya Lattner
Changes in directory llvm/autoconf: configure.ac updated: 1.269 - 1.269.2.1 --- Log message: Setting version number. --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/autoconf/configure.ac diff -u

[llvm-commits] [release_20] CVS: llvm/configure

2007-05-07 Thread Tanya Lattner
Changes in directory llvm: configure updated: 1.275 - 1.275.2.1 --- Log message: Setting version number --- Diffs of the changes: (+9 -9) configure | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) Index: llvm/configure diff -u llvm/configure:1.275

[llvm-commits] CVS: llvm/lib/Bitcode/Writer/BitcodeWriter.cpp

2007-05-07 Thread Chris Lattner
Changes in directory llvm/lib/Bitcode/Writer: BitcodeWriter.cpp updated: 1.51 - 1.52 --- Log message: Make a preemptive bitcode format change to support PR1146: http://llvm.org/PR1146 . This lets us do pr1146: http://llvm.org/PR1146 in llvm 2.1 without ugly code to emulate old behavior.

[llvm-commits] CVS: llvm/lib/Bitcode/Reader/BitcodeReader.cpp

2007-05-07 Thread Chris Lattner
Changes in directory llvm/lib/Bitcode/Reader: BitcodeReader.cpp updated: 1.47 - 1.48 --- Log message: Make a preemptive bitcode format change to support PR1146: http://llvm.org/PR1146 . This lets us do pr1146: http://llvm.org/PR1146 in llvm 2.1 without ugly code to emulate old behavior.

[llvm-commits] CVS: llvm/include/llvm/Bitcode/LLVMBitCodes.h

2007-05-07 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bitcode: LLVMBitCodes.h updated: 1.19 - 1.20 --- Log message: update comments, no functionality change --- Diffs of the changes: (+4 -4) LLVMBitCodes.h |8 1 files changed, 4 insertions(+), 4 deletions(-) Index: