mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-27 00:15:58 +00:00
[JumpThreading] When processing compares, explicitly check that the result type is not a vector rather than check for it being an integer.
Compares always return a scalar integer or vector of integers. isIntegerTy returns false for vectors, but that's not completely obvious. So using isVectorTy is less confusing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0e59845978
commit
195a2d9be0
@ -580,7 +580,7 @@ bool JumpThreadingPass::ComputeValueKnownInPredecessors(
|
||||
|
||||
// If comparing a live-in value against a constant, see if we know the
|
||||
// live-in value on any predecessors.
|
||||
if (isa<Constant>(Cmp->getOperand(1)) && Cmp->getType()->isIntegerTy()) {
|
||||
if (isa<Constant>(Cmp->getOperand(1)) && !Cmp->getType()->isVectorTy()) {
|
||||
Constant *CmpConst = cast<Constant>(Cmp->getOperand(1));
|
||||
|
||||
if (!isa<Instruction>(Cmp->getOperand(0)) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user