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

2006-11-19 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.57 -> 1.58 Instructions.cpp updated: 1.46 -> 1.47 Verifier.cpp updated: 1.165 -> 1.166 --- Log message: For PR950: http://llvm.org/PR950 : First in a series of patches to convert SetCondInst into ICmpInst and FCmpInst using only

[llvm-commits] CVS: llvm/lib/Analysis/ValueNumbering.cpp

2006-11-19 Thread Reid Spencer
Changes in directory llvm/lib/Analysis: ValueNumbering.cpp updated: 1.21 -> 1.22 --- Log message: For PR950: http://llvm.org/PR950 : First in a series of patches to convert SetCondInst into ICmpInst and FCmpInst using only two opcodes and having the instructions contain their predicate value.

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

2006-11-19 Thread Reid Spencer
Changes in directory llvm/include/llvm: InstrTypes.h updated: 1.47 -> 1.48 Instruction.def updated: 1.24 -> 1.25 Instructions.h updated: 1.45 -> 1.46 --- Log message: For PR950: http://llvm.org/PR950 : First in a series of patches to convert SetCondInst into ICmpInst and FCmpInst using only tw

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

2006-11-19 Thread Reid Spencer
Changes in directory llvm/lib/AsmParser: Lexer.l updated: 1.82 -> 1.83 ParserInternals.h updated: 1.46 -> 1.47 llvmAsmParser.y updated: 1.275 -> 1.276 --- Log message: For PR950: http://llvm.org/PR950 : Retain the signedness of the old integer types in a new TypeInfo structure so that it can be

Re: [llvm-commits] SETCC Patch [For Review Only]

2006-11-19 Thread Chris Lattner
On Nov 18, 2006, at 11:36 PM, Reid Spencer wrote: This is the first in a series of patches to split the SETCC instructions into just two instructions: icmp (integer compare) and fcmp (floating point compare). This patch is a no-op. It introduces code that will be used in subsequent patches. T