[llvm-commits] CVS: llvm/lib/VMCore/BasicBlock.cpp Function.cpp Module.cpp SymbolTableListTraitsImpl.h Type.cpp

2007-04-16 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.75 - 1.76 Function.cpp updated: 1.121 - 1.122 Module.cpp updated: 1.78 - 1.79 SymbolTableListTraitsImpl.h updated: 1.10 - 1.11 Type.cpp updated: 1.182 - 1.183 --- Log message: Refactor SymbolTableListTraits to only have a single

[llvm-commits] CVS: llvm/lib/VMCore/BasicBlock.cpp Function.cpp Module.cpp SymbolTableListTraitsImpl.h

2007-04-16 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.76 - 1.77 Function.cpp updated: 1.122 - 1.123 Module.cpp updated: 1.79 - 1.80 SymbolTableListTraitsImpl.h updated: 1.11 - 1.12 --- Log message: The (negative) offset from a SymbolTableListTraits-using ilist to its container object

[llvm-commits] CVS: llvm/lib/VMCore/BasicBlock.cpp Function.cpp Instruction.cpp SymbolTableListTraitsImpl.h Value.cpp ValueSymbolTable.cpp Verifier.cpp

2007-02-11 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.74 - 1.75 Function.cpp updated: 1.112 - 1.113 Instruction.cpp updated: 1.63 - 1.64 SymbolTableListTraitsImpl.h updated: 1.9 - 1.10 Value.cpp updated: 1.65 - 1.66 ValueSymbolTable.cpp updated: 1.10 - 1.11 Verifier.cpp updated: 1.194

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

2006-09-22 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.73 - 1.74 --- Log message: add method, correct comment --- Diffs of the changes: (+10 -3) BasicBlock.cpp | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) Index: llvm/lib/VMCore/BasicBlock.cpp diff -u

[llvm-commits] CVS: llvm/lib/VMCore/BasicBlock.cpp ConstantFolding.cpp Constants.cpp LeakDetector.cpp Type.cpp Verifier.cpp

2006-08-27 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.72 - 1.73 ConstantFolding.cpp updated: 1.89 - 1.90 Constants.cpp updated: 1.158 - 1.159 LeakDetector.cpp updated: 1.14 - 1.15 Type.cpp updated: 1.143 - 1.144 Verifier.cpp updated: 1.160 - 1.161 --- Log message:

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

2006-06-28 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.71 - 1.72 LeakDetector.cpp updated: 1.13 - 1.14 --- Log message: Use hidden visibility to reduce codesize --- Diffs of the changes: (+6 -4) BasicBlock.cpp |3 ++- LeakDetector.cpp |7 --- 2 files changed, 6

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

2006-06-13 Thread Owen Anderson
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.70 - 1.71 --- Log message: When asked not to delete useless PHIs, really don't delete them, no matter how redundant they are. --- Diffs of the changes: (+2 -1) BasicBlock.cpp |3 ++- 1 files changed, 2 insertions(+), 1

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

2006-06-08 Thread Vladimir Prus
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.68 - 1.69 --- Log message: New method BasicBlock::getFirstNonPHI. --- Diffs of the changes: (+11 -0) BasicBlock.cpp | 11 +++ 1 files changed, 11 insertions(+) Index: llvm/lib/VMCore/BasicBlock.cpp diff -u

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

2006-06-08 Thread Jim Laskey
Vladimir,The e = end() is no longer needed.Cheers,-- JimOn Jun 8, 2006, at 12:46 PM, Vladimir Prus wrote:+Instruction* BasicBlock::getFirstNonPHI() +{ +    BasicBlock::iterator i = begin(), e = end(); +    // All valid basic blocks should have a terminator, +    // which is not a PHINode. If we

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

2006-06-08 Thread Vladimir Prus
Changes in directory llvm/lib/VMCore: BasicBlock.cpp updated: 1.69 - 1.70 --- Log message: Remove dead code. --- Diffs of the changes: (+1 -1) BasicBlock.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/VMCore/BasicBlock.cpp diff -u