Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.17 -> 1.18
IndVarSimplify.cpp updated: 1.110 -> 1.111
LoopStrengthReduce.cpp updated: 1.109 -> 1.110
Reassociate.cpp updated: 1.77 -> 1.78
---
Log message:
Prefer non-virtual calls to ConstantInt::isZero over virtual
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.16 -> 1.17
---
Log message:
Although probably not necessary, guard against a potential assertion by
using isNullValue() instead of getZExtValue() == 0.
---
Diffs of the changes: (+1 -1)
CondPropagate.cpp |2 +
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.14 -> 1.15
---
Log message:
eliminate redundant check
---
Diffs of the changes: (+0 -1)
CondPropagate.cpp |1 -
1 files changed, 1 deletion(-)
Index: llvm/lib/Transforms/Scalar/CondPropagate.cpp
diff -u llv
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.13 -> 1.14
CorrelatedExprs.cpp updated: 1.46 -> 1.47
InstructionCombining.cpp updated: 1.591 -> 1.592
LoopUnswitch.cpp updated: 1.55 -> 1.56
SCCP.cpp updated: 1.149 -> 1.150
---
Log message:
Implement review feedback
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.12 -> 1.13
CorrelatedExprs.cpp updated: 1.45 -> 1.46
InstructionCombining.cpp updated: 1.590 -> 1.591
LoopUnswitch.cpp updated: 1.54 -> 1.55
PredicateSimplifier.cpp updated: 1.43 -> 1.44
SCCP.cpp updated: 1.148 -> 1.14
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.7 -> 1.8
---
Log message:
There can be more than one PHINode at the start of the block.
---
Diffs of the changes: (+4 -5)
CondPropagate.cpp |9 -
1 files changed, 4 insertions(+), 5 deletions(-)
Ind
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.6 -> 1.7
---
Log message:
Handle PHINode with only one incoming value.
This fixes http://llvm.org/bugs/show_bug.cgi?id=979
---
Diffs of the changes: (+9 -5)
CondPropagate.cpp | 14 +-
1 files change
Changes in directory llvm/lib/Transforms/Scalar:
CondPropagate.cpp updated: 1.4 -> 1.5
---
Log message:
Handle single-entry PHI nodes correctly. This fixes PR877:
http://llvm.org/PR877 and
Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll
---
Diffs of the changes: (+11 -1)
CondPropa