[llvm-commits] CVS: llvm/test/Regression/Transforms/LICM/basictest.ll

2006-12-31 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LICM: basictest.ll updated: 1.4 -> 1.5 --- Log message: Back out last revision now that llvm-upgrade can remove useless bitcasts. This serves as a test of that feature. --- Diffs of the changes: (+2 -2) basictest.ll |4 ++-- 1 files

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeParser.y

2006-12-31 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeParser.y updated: 1.27 -> 1.28 --- Log message: For PR1070: http://llvm.org/PR1070 : Remove useless bitcasts by commenting them out. --- Diffs of the changes: (+33 -2) UpgradeParser.y | 35 +-- 1 files c

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

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Scalar: SCCP.cpp updated: 1.144 -> 1.145 --- Log message: Fix a typo. --- Diffs of the changes: (+1 -1) SCCP.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Transforms/Scalar/SCCP.cpp diff -u llvm/lib/Transforms/Scala

[llvm-commits] CVS: llvm/include/llvm/IntrinsicsPowerPC.td Intrinsics.td IntrinsicsX86.td

2006-12-31 Thread Reid Spencer
Changes in directory llvm/include/llvm: IntrinsicsPowerPC.td updated: 1.27 -> 1.28 Intrinsics.td updated: 1.36 -> 1.37 IntrinsicsX86.td updated: 1.30 -> 1.31 --- Log message: Convert the intrinsic function definitions to use llvm_i32_ty instead of llvm_uint_ty or llvm_int_ty. Similarly for i8,

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

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: AsmWriter.cpp updated: 1.232 -> 1.233 --- Log message: Fix a cut-and-paste bug for processing of InvokeInst parameter attributes. The lookup of parameter attributes was offset by two because of the additional operands in an invoke instruction. --- Diffs

Re: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y

2006-12-31 Thread Reid Spencer
Oops. Sorry, missed that. Its fixed and regenerated now. Reid. On Sun, 2006-12-31 at 13:43 -0800, Jeff Cohen wrote: > Only half-fixed. The extra semi-colon is still there. > > Reid Spencer wrote: > > Jeff, > > > > This is now fixed. I wish the newer versions of bison would at least > > warn ab

[llvm-commits] CVS: llvm/lib/AsmParser/llvmAsmParser.cpp.cvs llvmAsmParser.y.cvs

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/AsmParser: llvmAsmParser.cpp.cvs updated: 1.40 -> 1.41 llvmAsmParser.y.cvs updated: 1.41 -> 1.42 --- Log message: Regenerate. --- Diffs of the changes: (+33 -32) llvmAsmParser.cpp.cvs | 62 +- llvmAsmParser.y.c

[llvm-commits] CVS: llvm/lib/AsmParser/llvmAsmParser.y

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/AsmParser: llvmAsmParser.y updated: 1.294 -> 1.295 --- Log message: Remove an extra semi-colon. --- Diffs of the changes: (+1 -1) llvmAsmParser.y |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/AsmParser/llvmAsmParser.y diff -u llvm

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

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.122 -> 1.123 --- Log message: Fix a bug in comparison of GEP indices. --- Diffs of the changes: (+4 -4) ConstantFolding.cpp |8 1 files changed, 4 insertions(+), 4 deletions(-) Index: llvm/lib/VMCore/Consta

Re: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y

2006-12-31 Thread Jeff Cohen
Only half-fixed. The extra semi-colon is still there. Reid Spencer wrote: > Jeff, > > This is now fixed. I wish the newer versions of bison would at least > warn about this! > > Reid. > > On Sun, 2006-12-31 at 12:42 -0800, Jeff Cohen wrote: > >> A semi-colon appears to be in the wrong place, a

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

2006-12-31 Thread Reid Spencer
Changes in directory llvm/docs: LangRef.html updated: 1.183 -> 1.184 --- Log message: Remove documentation of non-existent cextcc and csretextcc calling conventions as these have been replaced with parameter attributes. --- Diffs of the changes: (+2 -27) LangRef.html | 29 ++

Re: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y

2006-12-31 Thread Reid Spencer
Jeff, This is now fixed. I wish the newer versions of bison would at least warn about this! Reid. On Sun, 2006-12-31 at 12:42 -0800, Jeff Cohen wrote: > A semi-colon appears to be in the wrong place, as marked below. Some > versions of bison complain, while others silently accept it (including

[llvm-commits] CVS: llvm/lib/AsmParser/llvmAsmParser.y

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/AsmParser: llvmAsmParser.y updated: 1.293 -> 1.294 --- Log message: Add a missing colon. Noticed by Jeff Cohen. --- Diffs of the changes: (+1 -0) llvmAsmParser.y |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/AsmParser/llvmAsmParser.y diff -u llvm

Re: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y

2006-12-31 Thread Jeff Cohen
A semi-colon appears to be in the wrong place, as marked below. Some versions of bison complain, while others silently accept it (including the newest ones)--though how they interpret the grammar is not clear. Reid Spencer wrote: > Changes in directory llvm/lib/AsmParser: > > Lexer.l updated: 1

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp ARMInstrInfo.td

2006-12-31 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMISelDAGToDAG.cpp updated: 1.95 -> 1.96 ARMInstrInfo.td updated: 1.82 -> 1.83 --- Log message: implement missing compares patch by Lauro bug fixed by me --- Diffs of the changes: (+67 -38) ARMISelDAGToDAG.cpp | 103 ++

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

2006-12-31 Thread Rafael Espindola
Changes in directory llvm/test/Regression/CodeGen/ARM: fpcmp_ueq.ll added (r1.1) --- Log message: implement missing compares patch by Lauro bug fixed by me --- Diffs of the changes: (+11 -0) fpcmp_ueq.ll | 11 +++ 1 files changed, 11 insertions(+) Index: llvm/test/Regression/Co

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

2006-12-31 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: Type.cpp updated: 1.153 -> 1.154 --- Log message: Fix a bug in getParamAttrs where an invalid value would be returned if the index passed in was out of range for the number of parameter attributes set. --- Diffs of the changes: (+3 -3) Type.cpp |6

Re: [llvm-commits] [llvm-gcc] PR950 Cummulative Patch (Please Commit .. replaces SETCC patch)

2006-12-31 Thread Jim Laskey
Committed and should be on today's mirror. Cheers, -- Jim On 31-Dec-06, at 03:43 AM, Reid Spencer wrote: All, Here is a cumulative patch to keep llvm-gcc working with recent changes in LLVM. This incorporates the SETCC patch I sent a week ago. This one also includes all the signless inte