mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
[InstCombine] Fix miscompile in FoldSPFofSPF
We had a select of a cast of a select but attempted to replace the outer select with the inner select dispite their incompatible types. Patch by Anton Korobeynikov! This fixes PR27236. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265805 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0874850952
commit
2e912162e4
@ -642,6 +642,9 @@ Instruction *InstCombiner::FoldSPFofSPF(Instruction *Inner,
|
||||
Value *A, Value *B,
|
||||
Instruction &Outer,
|
||||
SelectPatternFlavor SPF2, Value *C) {
|
||||
if (Outer.getType() != Inner->getType())
|
||||
return nullptr;
|
||||
|
||||
if (C == A || C == B) {
|
||||
// MAX(MAX(A, B), B) -> MAX(A, B)
|
||||
// MIN(MIN(a, b), a) -> MIN(a, b)
|
||||
|
19
test/Transforms/InstCombine/pr27236.ll
Normal file
19
test/Transforms/InstCombine/pr27236.ll
Normal file
@ -0,0 +1,19 @@
|
||||
; RUN: opt -S -instcombine < %s | FileCheck %s
|
||||
|
||||
define float @test1(i32 %scale) {
|
||||
entry:
|
||||
%tmp1 = icmp sgt i32 1, %scale
|
||||
%tmp2 = select i1 %tmp1, i32 1, i32 %scale
|
||||
%tmp3 = sitofp i32 %tmp2 to float
|
||||
%tmp4 = icmp sgt i32 %tmp2, 0
|
||||
%sel = select i1 %tmp4, float %tmp3, float 0.000000e+00
|
||||
ret float %sel
|
||||
}
|
||||
|
||||
; CHECK-LABEL: define float @test1(
|
||||
; CHECK: %[[tmp1:.*]] = icmp slt i32 %scale, 1
|
||||
; CHECK: %[[tmp2:.*]] = select i1 %[[tmp1]], i32 1, i32 %scale
|
||||
; CHECK: %[[tmp3:.*]] = sitofp i32 %[[tmp2]] to float
|
||||
; CHECK: %[[tmp4:.*]] = icmp sgt i32 %[[tmp2]], 0
|
||||
; CHECK: %[[sel:.*]] = select i1 %[[tmp4]], float %[[tmp3]], float 0.000000e+00
|
||||
; CHECK: ret float %[[sel]]
|
Loading…
x
Reference in New Issue
Block a user