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

2007-05-11 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

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/Altivec/Makefile

2007-05-11 Thread Chris Lattner
Changes in directory llvm-test/SingleSource/UnitTests/Vector/Altivec: Makefile updated: 1.2 - 1.3 --- Log message: disable vector tests for the CBE, which doesn't support vectors (PR1126: http://llvm.org/PR1126 ) --- Diffs of the changes: (+3 -0) Makefile |3 +++ 1 files changed, 3

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/Makefile

2007-05-11 Thread Chris Lattner
Changes in directory llvm-test/SingleSource/UnitTests/Vector: Makefile updated: 1.3 - 1.4 --- Log message: disable vector tests for the CBE, which doesn't support vectors (PR1126: http://llvm.org/PR1126 ) --- Diffs of the changes: (+3 -0) Makefile |3 +++ 1 files changed, 3

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/SSE/Makefile

2007-05-11 Thread Chris Lattner
Changes in directory llvm-test/SingleSource/UnitTests/Vector/SSE: Makefile updated: 1.4 - 1.5 --- Log message: disable vector tests for the CBE, which doesn't support vectors (PR1126: http://llvm.org/PR1126 ) --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1

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

2007-05-11 Thread Anton Korobeynikov
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.139 - 1.140 --- Log message: Fix action No calculation in multiple-invoke-one-LP mode --- Diffs of the changes: (+31 -31) DwarfWriter.cpp | 62 1 files changed, 31

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

2007-05-11 Thread Anton Korobeynikov
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.140 - 1.141 --- Log message: Perform correct actions numbers/sizes computation --- Diffs of the changes: (+3 -5) DwarfWriter.cpp |8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) Index:

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

2007-05-11 Thread John Criswell
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.134 - 1.135 --- Log message: Update abstract. --- Diffs of the changes: (+2 -2) DevMtgMay2007.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u

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

2007-05-11 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.763 - 1.764 --- Log message: fix regressions from my previous checking, including Transforms/InstCombine/2006-12-08-ICmp-Combining.ll --- Diffs of the changes: (+2 -2) InstructionCombining.cpp |4

Re: [llvm-commits] beginning unroll improvements

2007-05-11 Thread Dan Gohman
Devang Patel wrote: This looks good. Have you run any llvm-test benchmarks or any other benchmarks ? I'm not currently planning to make loop-unroll unroll anything more by default than what it currently does, so I don't expect llvm-test to be affected. Dan -- Dan Gohman, Cray Inc.

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

2007-05-11 Thread Reid Spencer
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.135 - 1.136 --- Log message: Add Tanya. --- 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-www/DevMtgMay2007.html

2007-05-11 Thread Reid Spencer
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.136 - 1.137 --- Log message: Update total too. --- Diffs of the changes: (+2 -2) DevMtgMay2007.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u

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

2007-05-11 Thread Dan Gohman
Changes in directory llvm/lib/Transforms/Scalar: LoopUnroll.cpp updated: 1.46 - 1.47 --- Log message: 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 enables it. It also begins to separate loop

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

2007-05-11 Thread Dan Gohman
Changes in directory llvm/include/llvm: Instructions.h updated: 1.73 - 1.74 --- Log message: Simplify BranchInst::getSuccessor, avoiding a conditional operator. --- Diffs of the changes: (+1 -2) Instructions.h |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index:

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

2007-05-11 Thread Dan Gohman
Changes in directory llvm/include/llvm: Pass.h updated: 1.90 - 1.91 --- Log message: Add explicit keywords to several constructors that now have one argument. --- Diffs of the changes: (+5 -5) Pass.h | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) Index:

[llvm-commits] CVS: llvm/include/llvm/Pass.h PassManager.h

2007-05-11 Thread Dan Gohman
Changes in directory llvm/include/llvm: Pass.h updated: 1.91 - 1.92 PassManager.h updated: 1.39 - 1.40 --- Log message: Remove forward-declarations for classes that don't exist. --- Diffs of the changes: (+0 -3) Pass.h|2 -- PassManager.h |1 - 2 files changed, 3

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

2007-05-11 Thread Dan Gohman
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.764 - 1.765 LoopRotation.cpp updated: 1.13 - 1.14 --- Log message: Fix typos. --- Diffs of the changes: (+3 -3) InstructionCombining.cpp |2 +- LoopRotation.cpp |4 ++-- 2 files changed, 3

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

2007-05-11 Thread Dan Gohman
Changes in directory llvm/lib/Transforms/Utils: LCSSA.cpp updated: 1.42 - 1.43 --- Log message: Fix typos. --- Diffs of the changes: (+1 -1) LCSSA.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Transforms/Utils/LCSSA.cpp diff -u

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

2007-05-11 Thread Dan Gohman
Changes in directory llvm/lib/VMCore: Instructions.cpp updated: 1.91 - 1.92 --- Log message: Update comments to say vector instead of packed. --- Diffs of the changes: (+10 -10) Instructions.cpp | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) Index:

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

2007-05-11 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: LoopStrengthReduce.cpp updated: 1.136 - 1.137 --- Log message: significantly improve debug output of lsr --- Diffs of the changes: (+13 -6) LoopStrengthReduce.cpp | 19 +-- 1 files changed, 13 insertions(+), 6 deletions(-)

[llvm-commits] CVS: llvm/test/CFrontend/2007-05-11-str-const.ll

2007-05-11 Thread Devang Patel
Changes in directory llvm/test/CFrontend: 2007-05-11-str-const.ll added (r1.1) --- Log message: New test. --- Diffs of the changes: (+5 -0) 2007-05-11-str-const.ll |5 + 1 files changed, 5 insertions(+) Index: llvm/test/CFrontend/2007-05-11-str-const.ll diff -c /dev/null

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

2007-05-11 Thread Devang Patel
Changes in directory llvm/lib/CodeGen: MachineModuleInfo.cpp updated: 1.11 - 1.12 --- Log message: Fix http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070507/049516.html --- Diffs of the changes: (+1 -1) MachineModuleInfo.cpp |2 +- 1 files changed, 1 insertion(+), 1

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

2007-05-11 Thread Chris Lattner
Changes in directory llvm/lib/Bitcode/Writer: BitcodeWriter.cpp updated: 1.52 - 1.53 --- Log message: allow partially materialized modules to be written out, which just strips out the functions which haven't been read. --- Diffs of the changes: (+1 -0) BitcodeWriter.cpp |1 + 1 files

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

2007-05-11 Thread Reid Spencer
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.137 - 1.138 --- Log message: Confirm Rafael. --- Diffs of the changes: (+4 -4) DevMtgMay2007.html |8 1 files changed, 4 insertions(+), 4 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u

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

2007-05-11 Thread Lauro Ramos Venancio
Changes in directory llvm/docs: ReleaseNotes.html updated: 1.373 - 1.374 --- Log message: Add a known QEMU problem. --- Diffs of the changes: (+5 -2) ReleaseNotes.html |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) Index: llvm/docs/ReleaseNotes.html diff -u

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

2007-05-11 Thread Chris Lattner
Changes in directory llvm/docs: BitCodeFormat.html updated: 1.1 - 1.2 --- Log message: first step --- Diffs of the changes: (+98 -28) BitCodeFormat.html | 126 + 1 files changed, 98 insertions(+), 28 deletions(-) Index:

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

2007-05-11 Thread Chris Lattner
Changes in directory llvm/docs: BitCodeFormat.html updated: 1.2 - 1.3 --- Log message: add a bunch of content. --- Diffs of the changes: (+214 -9) BitCodeFormat.html | 223 ++--- 1 files changed, 214 insertions(+), 9 deletions(-) Index: