diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-02 00:28:52 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-02 00:28:52 +0000 |
commit | cae5754619433aed7be74abbf1c0551a82d369cb (patch) | |
tree | 77599913d2e900d4774e81cce3333f31f25c9fa6 /lib/Transforms/Scalar/CondPropagate.cpp | |
parent | 34da0ac28f7bfe737f92d3a098697a6ebc09a25e (diff) |
Prefer non-virtual calls to ConstantInt::isZero over virtual calls to
Constant::isNullValue() in situations where it is possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/CondPropagate.cpp')
-rw-r--r-- | lib/Transforms/Scalar/CondPropagate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/CondPropagate.cpp b/lib/Transforms/Scalar/CondPropagate.cpp index fdcb404e11..90a4f3048f 100644 --- a/lib/Transforms/Scalar/CondPropagate.cpp +++ b/lib/Transforms/Scalar/CondPropagate.cpp @@ -139,7 +139,7 @@ void CondProp::SimplifyPredecessors(BranchInst *BI) { // ultimate destination. bool PHIGone = PN->getNumIncomingValues() == 2; RevectorBlockTo(PN->getIncomingBlock(i-1), - BI->getSuccessor(CB->isNullValue())); + BI->getSuccessor(CB->isZero())); ++NumBrThread; // If there were two predecessors before this simplification, the PHI node |