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

2006-01-03 Thread John Criswell
Changes in directory llvm: LICENSE.TXT updated: 1.25 - 1.26 --- Log message: Happy New Year, LLVM. --- Diffs of the changes: (+1 -1) LICENSE.TXT |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/LICENSE.TXT diff -u llvm/LICENSE.TXT:1.25 llvm/LICENSE.TXT:1.26 ---

[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: PassManagerT.h updated: 1.59 - 1.60 --- Log message: silence some warnings --- Diffs of the changes: (+6 -0) PassManagerT.h |6 ++ 1 files changed, 6 insertions(+) Index: llvm/lib/VMCore/PassManagerT.h diff -u

Re: [llvm-commits] CVS: llvm-gcc/gcc/config/rs6000/sysv4.h t-ppccomm

2006-01-03 Thread Chris Lattner
On Tue, 3 Jan 2006, Marco Matthies wrote: Chris Lattner wrote: Changes in directory llvm-gcc/gcc/config/rs6000: sysv4.h updated: 1.1.1.2 - 1.2 t-ppccomm updated: 1.1.1.1 - 1.2 --- Log message: get llvmgcc building on ppc-linux and ppc-linux64. Thanks to Marco Matthies for the patch! To my

[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp

2006-01-03 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.121 - 1.122 --- Log message: Remove obsolete comment, make things look a bit nicer --- Diffs of the changes: (+1 -2) DAGISelEmitter.cpp |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index:

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

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Constants.cpp updated: 1.141 - 1.142 --- Log message: Fix an assertion to allow constant folding of packed values --- Diffs of the changes: (+4 -3) Constants.cpp |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index:

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

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.78 - 1.79 --- Log message: implement constant folding of ==/!= on constant packed, simplify some code. --- Diffs of the changes: (+11 -3) ConstantFolding.cpp | 14 +++--- 1 files changed, 11 insertions(+), 3

[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp

2006-01-03 Thread Jeff Cohen
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.123 - 1.124 --- Log message: Replace fix with one less disruptive to the original code. Also note that GCC 4.1 also correctly flags the syntax error. --- Diffs of the changes: (+3 -4) DAGISelEmitter.cpp |7

[llvm-commits] CVS: llvm/lib/VMCore/Pass.cpp PassManagerT.h

2006-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Pass.cpp updated: 1.66 - 1.67 PassManagerT.h updated: 1.62 - 1.63 --- Log message: Patch #6's in Saem's refactor-the-passmanager patch series. From him: This sanitises the world, blows away the specialisations and adds traits per passmanager type --