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

2007-02-23 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.69 - 1.70 Instructions.cpp updated: 1.77 - 1.78 --- Log message: Refactor the setName stuff, moving it down the inheritance hierarchy, to solve a crash in -instcombine -debug that was hit while investigating PR1217:

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

2007-02-19 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.67 - 1.68 --- Log message: Add a FIXME for unwritten code. --- Diffs of the changes: (+2 -0) Instruction.cpp |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/VMCore/Instruction.cpp diff -u

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

2007-02-19 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.68 - 1.69 --- Log message: remove warning --- Diffs of the changes: (+2 -2) Instruction.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/VMCore/Instruction.cpp diff -u

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

2007-02-15 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.65 - 1.66 --- Log message: make mayWriteToMemory a non-virtual function --- Diffs of the changes: (+19 -0) Instruction.cpp | 19 +++ 1 files changed, 19 insertions(+) Index:

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

2007-02-15 Thread Andrew Lenharth
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.66 - 1.67 --- Log message: fix build --- Diffs of the changes: (+1 -0) Instruction.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/VMCore/Instruction.cpp diff -u llvm/lib/VMCore/Instruction.cpp:1.66

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

2007-02-12 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.64 - 1.65 Instructions.cpp updated: 1.74 - 1.75 --- Log message: Switch UnaryOperators to default to passing names up by const char* when possible. This speeds up bcreading by 1.5%. --- Diffs of the changes: (+74 -8)

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

2007-01-03 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.61 - 1.62 --- Log message: Now that setcondinst has been eliminated, we can mark Value::SubclassID const and remove the ugly mutator methods. --- Diffs of the changes: (+0 -4) Instruction.cpp |4 1 files changed, 4

[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/VMCore/Instruction.cpp

2006-10-26 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.54 - 1.55 --- Log message: Fix Transforms/InstCombine/2006-10-26-VectorReassoc.ll --- Diffs of the changes: (+6 -5) Instruction.cpp | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) Index:

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

2006-06-21 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Instruction.cpp updated: 1.51 - 1.52 Instructions.cpp updated: 1.38 - 1.39 --- Log message: Add some out-of-line virtual dtors so that the class has a home, preventing vtables for (e.g.) Instruction from being emitted into every .o file. --- Diffs of the