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

2007-05-10 Thread Bill Wendling
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.131 -> 1.132 --- Log message: Josh Added. --- Diffs of the changes: (+4 -3) DevMtgMay2007.html |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u llvm-www/DevMtgMay2007.h

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

2007-05-10 Thread Anton Korobeynikov
Changes in directory llvm/docs: ReleaseNotes.html updated: 1.372 -> 1.373 --- Log message: These attributes are supported! --- Diffs of the changes: (+8 -9) ReleaseNotes.html | 17 - 1 files changed, 8 insertions(+), 9 deletions(-) Index: llvm/docs/ReleaseNotes.html dif

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

2007-05-10 Thread John Criswell
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.132 -> 1.133 --- Log message: Added a brief description of my talk. --- Diffs of the changes: (+3 -2) DevMtgMay2007.html |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u

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

2007-05-10 Thread Anton Korobeynikov
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.136 -> 1.137 --- Log message: TypeIds are indexed by j, not i --- Diffs of the changes: (+1 -1) DwarfWriter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/DwarfWriter.cpp diff -u llvm

Re: [llvm-commits] beginning unroll improvements

2007-05-10 Thread Devang Patel
Hi Dan, This looks good. Have you run any llvm-test benchmarks or any other benchmarks ? - Devang On May 9, 2007, at 9:50 AM, Dan Gohman wrote: This patch extends the LoopUnroll pass to be able to unroll loops with unknown trip counts. This is left off by default, and a command-line option en

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

2007-05-10 Thread Duncan Sands
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.137 -> 1.138 --- Log message: Later computations assume we are aligned at this point. --- Diffs of the changes: (+3 -2) DwarfWriter.cpp |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm/lib/CodeGen

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

2007-05-10 Thread John Criswell
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.133 -> 1.134 --- Log message: Updated to my presentation abstract. --- Diffs of the changes: (+2 -3) DevMtgMay2007.html |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u l

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

2007-05-10 Thread Evan Cheng
Changes in directory llvm-test: Makefile.programs updated: 1.266 -> 1.267 --- Log message: For ARM / THUMB. Make llcbeta option --enable-tail-merge. --- Diffs of the changes: (+5 -1) Makefile.programs |6 +- 1 files changed, 5 insertions(+), 1 deletion(-) Index: llvm-test/Makefile

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

2007-05-10 Thread Anton Korobeynikov
Changes in directory llvm/include/llvm/CodeGen: MachineModuleInfo.h updated: 1.11 -> 1.12 --- Log message: Allow multiple invokes per landing pad. This (probably) fixes PR1410: http://llvm.org/PR1410 . --- Diffs of the changes: (+3 -4) MachineModuleInfo.h |7 +++ 1 files changed,

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

2007-05-10 Thread Anton Korobeynikov
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.138 -> 1.139 MachineModuleInfo.cpp updated: 1.9 -> 1.10 --- Log message: Allow multiple invokes per landing pad. This (probably) fixes PR1410: http://llvm.org/PR1410 . --- Diffs of the changes: (+75 -57) DwarfWriter.cpp

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

2007-05-10 Thread Anton Korobeynikov
Changes in directory llvm/lib/CodeGen: MachineModuleInfo.cpp updated: 1.10 -> 1.11 --- Log message: Ooops. Some debugging stuff :) --- Diffs of the changes: (+0 -1) MachineModuleInfo.cpp |1 - 1 files changed, 1 deletion(-) Index: llvm/lib/CodeGen/MachineModuleInfo.cpp diff -u llvm/l

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

2007-05-10 Thread Dale Johannesen
Changes in directory llvm/lib/CodeGen: BranchFolding.cpp updated: 1.51 -> 1.52 --- Log message: Do not generate branches to entry block. This fixes several test suite failures on PPC (can happen only when prologue code is null) --- Diffs of the changes: (+19 -4) BranchFolding.cpp | 23 +

[llvm-commits] CVS: llvm/lib/System/Unix/MappedFile.inc

2007-05-10 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: MappedFile.inc updated: 1.19 -> 1.20 --- Log message: Fix a bug where the bcreader could crash on .bc files that were an exact multiple of the page size, due to a bug in MappedFile --- Diffs of the changes: (+1 -0) MappedFile.inc |1 + 1 files

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

2007-05-10 Thread Chris Lattner
Changes in directory llvm/lib/Support: MemoryBuffer.cpp updated: 1.6 -> 1.7 --- Log message: fix a memory leak --- Diffs of the changes: (+1 -1) MemoryBuffer.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Support/MemoryBuffer.cpp diff -u llvm/lib/Support/Me

[llvm-commits] CVS: llvm/test/Transforms/LoopUnswitch/2007-05-09-Unreachable.ll 2007-05-09-tl.ll

2007-05-10 Thread Devang Patel
Changes in directory llvm/test/Transforms/LoopUnswitch: 2007-05-09-Unreachable.ll updated: 1.1 -> 1.2 2007-05-09-tl.ll updated: 1.1 -> 1.2 --- Log message: Drop ModuleID from comment. --- Diffs of the changes: (+2 -2) 2007-05-09-Unreachable.ll |2 +- 2007-05-09-tl.ll |2 +-

[llvm-commits] CVS: llvm/test/Transforms/InstCombine/2007-05-10-icmp-or.ll

2007-05-10 Thread Chris Lattner
Changes in directory llvm/test/Transforms/InstCombine: 2007-05-10-icmp-or.ll added (r1.1) --- Log message: new testcase that crashes instcombine --- Diffs of the changes: (+8 -0) 2007-05-10-icmp-or.ll |8 1 files changed, 8 insertions(+) Index: llvm/test/Transforms/InstCombi

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

2007-05-10 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.762 -> 1.763 --- Log message: fix Transforms/InstCombine/2007-05-10-icmp-or.ll --- Diffs of the changes: (+10 -5) InstructionCombining.cpp | 15 ++- 1 files changed, 10 insertions(+), 5 delet

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

2007-05-10 Thread Reid Spencer
Changes in directory llvm/test: Makefile updated: 1.102 -> 1.103 --- Log message: For PR1411: http://llvm.org/PR1411 : Don't try to use {} bracketing when setting a variable in site.exp --- Diffs of the changes: (+3 -3) Makefile |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(