28 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py2; RUN: opt < %s -passes=instcombine -S | FileCheck %s3 4; For PR12485 6define i1 @test(i32 %tmp6) {7; CHECK-LABEL: @test(8; CHECK-NEXT: [[TMP1:%.*]] = add i32 [[TMP6:%.*]], 719; CHECK-NEXT: [[TMP2:%.*]] = icmp ult i32 [[TMP1]], -1210; CHECK-NEXT: ret i1 [[TMP2]]11;12 %tmp7 = sdiv i32 %tmp6, 1213 icmp ne i32 %tmp7, -614 ret i1 %115}16 17define <2 x i1> @test_vec(<2 x i32> %tmp6) {18; CHECK-LABEL: @test_vec(19; CHECK-NEXT: [[TMP1:%.*]] = add <2 x i32> [[TMP6:%.*]], splat (i32 71)20; CHECK-NEXT: [[TMP2:%.*]] = icmp ult <2 x i32> [[TMP1]], splat (i32 -12)21; CHECK-NEXT: ret <2 x i1> [[TMP2]]22;23 %tmp7 = sdiv <2 x i32> %tmp6, <i32 12, i32 12>24 icmp ne <2 x i32> %tmp7, <i32 -6, i32 -6>25 ret <2 x i1> %126}27 28