summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/ValueTracking.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2016-04-29 21:12:31 +0000
committerChad Rosier <mcrosier@codeaurora.org>2016-04-29 21:12:31 +0000
commitcd62bf58219d78e9557a20eddb886c7cc582feb7 (patch)
tree4c21b58c944cf35b5e32b631c2524270473cbea6 /llvm/lib/Analysis/ValueTracking.cpp
parent00c750cd12e7670136ae3bbddcd27ef4b8561feb (diff)
downloadbcm5719-llvm-cd62bf58219d78e9557a20eddb886c7cc582feb7.tar.gz
bcm5719-llvm-cd62bf58219d78e9557a20eddb886c7cc582feb7.zip
[InstCombine] Determine the result of a select based on a dominating condition.
Differential Revision: http://reviews.llvm.org/D19550 llvm-svn: 268104
Diffstat (limited to 'llvm/lib/Analysis/ValueTracking.cpp')
-rw-r--r--llvm/lib/Analysis/ValueTracking.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp
index feddbafa0d5..4097322a2b9 100644
--- a/llvm/lib/Analysis/ValueTracking.cpp
+++ b/llvm/lib/Analysis/ValueTracking.cpp
@@ -3941,7 +3941,10 @@ Optional<bool> llvm::isImpliedCondition(Value *LHS, Value *RHS,
unsigned Depth, AssumptionCache *AC,
const Instruction *CxtI,
const DominatorTree *DT) {
- assert(LHS->getType() == RHS->getType() && "mismatched type");
+ // A mismatch occurs when we compare a scalar cmp to a vector cmp, for example.
+ if (LHS->getType() != RHS->getType())
+ return None;
+
Type *OpTy = LHS->getType();
assert(OpTy->getScalarType()->isIntegerTy(1));
OpenPOWER on IntegriCloud