You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
279 B
17 lines
279 B
4 months ago
|
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||
|
|
||
|
define i32 @test(i32 %x) {
|
||
|
; CHECK-LABEL: @test
|
||
|
entry:
|
||
|
; CHECK-NOT: icmp
|
||
|
; CHECK: br i1 undef,
|
||
|
%cmp = icmp ult i32 %x, 7
|
||
|
br i1 %cmp, label %merge, label %merge
|
||
|
merge:
|
||
|
; CHECK-LABEL: merge:
|
||
|
; CHECK: ret i32 %x
|
||
|
ret i32 %x
|
||
|
}
|
||
|
|
||
|
|