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

2007-05-30 Thread Bill Wendling
Changes in directory llvm: CREDITS.TXT updated: 1.82 -> 1.83 --- Log message: Alphabetize Bruno's entry. --- Diffs of the changes: (+5 -5) CREDITS.TXT | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) Index: llvm/CREDITS.TXT diff -u llvm/CREDITS.TXT:1.82 llvm/CREDITS.TX

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

2007-05-30 Thread Bruno Cardoso Lopes
Changes in directory llvm: CREDITS.TXT updated: 1.81 -> 1.82 --- Log message: New contributor added! --- Diffs of the changes: (+5 -0) CREDITS.TXT |5 + 1 files changed, 5 insertions(+) Index: llvm/CREDITS.TXT diff -u llvm/CREDITS.TXT:1.81 llvm/CREDITS.TXT:1.82 --- llvm/CREDITS.T

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

2007-05-30 Thread Owen Anderson
Changes in directory llvm/lib/Transforms/Scalar: GVNPRE.cpp updated: 1.6 -> 1.7 --- Log message: Attempt to fix up phi_translate. --- Diffs of the changes: (+61 -11) GVNPRE.cpp | 72 +++-- 1 files changed, 61 insertions(+), 11 delet

[llvm-commits] EH cleanup

2007-05-30 Thread Duncan Sands
TypeInfos are passed around as pointers (i8*), yet when a null value is needed it is passed as an i32 value of 0, rather than an i8* null. The attached patches change to using an i8* null in LLVM and llvm-gcc. At the same time I eliminated some uses of std::vector as a way of holding a single Val

[llvm-commits] CVS: llvm-www/devmtg/2007-05/index.html

2007-05-30 Thread Chris Lattner
Changes in directory llvm-www/devmtg/2007-05: index.html updated: 1.6 -> 1.7 --- Log message: add link to youtube videos --- Diffs of the changes: (+5 -1) index.html |6 +- 1 files changed, 5 insertions(+), 1 deletion(-) Index: llvm-www/devmtg/2007-05/index.html diff -u llvm-www/

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

2007-05-30 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen: IfConversion.cpp updated: 1.15 -> 1.16 --- Log message: Change traversal order to bottom up in preparation for more aggressive if-conversion. --- Diffs of the changes: (+69 -23) IfConversion.cpp | 92 +

[llvm-commits] [127825] Fix previous patch.

2007-05-30 Thread dpatel
Revision: 127825 Author: dpatel Date: 2007-05-30 11:47:21 -0700 (Wed, 30 May 2007) Log Message: --- Fix previous patch. Make it safer. Return after defining APPLE_CC. Modified Paths: -- apple-local/branches/llvm/gcc/c-cppbuiltin.c Modified: apple-local/branches/llv

[llvm-commits] [127823] Set __APPLE_CC__ value to base gcc build number

2007-05-30 Thread dpatel
Revision: 127823 Author: dpatel Date: 2007-05-30 11:12:10 -0700 (Wed, 30 May 2007) Log Message: --- Set __APPLE_CC__ value to base gcc build number instead of llvm build number. Modified Paths: -- apple-local/branches/llvm/gcc/c-cppbuiltin.c apple-local/branches/

[llvm-commits] CVS: llvm-test/Makefile.programs

2007-05-30 Thread Evan Cheng
Changes in directory llvm-test: Makefile.programs updated: 1.267 -> 1.268 --- Log message: Change llcbeta for various targets now that tail merging is on by default for all targets except for ppc. --- Diffs of the changes: (+3 -4) Makefile.programs |7 +++ 1 files changed, 3 insert

[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C++/life/life.cpp

2007-05-30 Thread Evan Cheng
Changes in directory llvm-test/MultiSource/Benchmarks/Prolangs-C++/life: life.cpp updated: 1.2 -> 1.3 --- Log message: Add SMALL_PROBLEM_SIZE support. --- Diffs of the changes: (+4 -0) life.cpp |4 1 files changed, 4 insertions(+) Index: llvm-test/MultiSource/Benchmarks/Prolangs-

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

2007-05-30 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: TargetLowering.cpp updated: 1.118 -> 1.119 --- Log message: Fix CodeGen/PowerPC/2007-05-30-dagcombine-miscomp.ll, and PR1473: http://llvm.org/PR1473 . --- Diffs of the changes: (+1 -1) TargetLowering.cpp |2 +- 1 files changed, 1 ins

[llvm-commits] CVS: llvm/test/CodeGen/PowerPC/2007-05-30-dagcombine-miscomp.ll

2007-05-30 Thread Chris Lattner
Changes in directory llvm/test/CodeGen/PowerPC: 2007-05-30-dagcombine-miscomp.ll added (r1.1) --- Log message: new testcase for PR1473: http://llvm.org/PR1473 --- Diffs of the changes: (+14 -0) 2007-05-30-dagcombine-miscomp.ll | 14 ++ 1 files changed, 14 insertions(+) Ind

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

2007-05-30 Thread Devang Patel
Changes in directory llvm/lib/Transforms/Scalar: LICM.cpp updated: 1.100 -> 1.101 --- Log message: Fix typo. --- Diffs of the changes: (+1 -1) LICM.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Transforms/Scalar/LICM.cpp diff -u llvm/lib/Transforms/Scalar/

[llvm-commits] CVS: llvm-www/pubs/2007-05-31-Switch-Lowering.html 2007-05-31-Switch-Lowering.pdf index.html

2007-05-30 Thread Anton Korobeynikov
Changes in directory llvm-www/pubs: 2007-05-31-Switch-Lowering.html added (r1.1) 2007-05-31-Switch-Lowering.pdf added (r1.1) index.html updated: 1.49 -> 1.50 --- Log message: Add my paper --- Diffs of the changes: (+68 -1) 2007-05-31-Switch-Lowering.html | 62

[llvm-commits] CVS: llvm/test/C++Frontend/2007-05-23-TryFinally.cpp

2007-05-30 Thread Duncan Sands
Changes in directory llvm/test/C++Frontend: 2007-05-23-TryFinally.cpp added (r1.1) --- Log message: Testcase for http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070528/050047.html --- Diffs of the changes: (+15 -0) 2007-05-23-TryFinally.cpp | 15 +++ 1 files ch