mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Fix a bug in my select transformation
llvm-svn: 12826
This commit is contained in:
parent
226ea8166e
commit
ca1428e01c
@ -2224,10 +2224,10 @@ Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
|
||||
} else if (SCI->getOperand(0) == FalseVal && SCI->getOperand(1) == TrueVal){
|
||||
// Transform (X == Y) ? Y : X -> X
|
||||
if (SCI->getOpcode() == Instruction::SetEQ)
|
||||
return ReplaceInstUsesWith(SI, TrueVal);
|
||||
return ReplaceInstUsesWith(SI, FalseVal);
|
||||
// Transform (X != Y) ? Y : X -> Y
|
||||
if (SCI->getOpcode() == Instruction::SetNE)
|
||||
return ReplaceInstUsesWith(SI, FalseVal);
|
||||
return ReplaceInstUsesWith(SI, TrueVal);
|
||||
// NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user