mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c49d7dd886
Upgrade tests to work with new llvm.exp version of llvm_runtest. llvm-svn: 36013
10 lines
290 B
LLVM
10 lines
290 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {icmp sle}
|
|
; PR1244
|
|
|
|
define i1 @test(i32 %c.3.i, i32 %d.292.2.i) {
|
|
%tmp266.i = icmp slt i32 %c.3.i, %d.292.2.i
|
|
%tmp276.i = icmp eq i32 %c.3.i, %d.292.2.i
|
|
%sel_tmp80 = or i1 %tmp266.i, %tmp276.i
|
|
ret i1 %sel_tmp80
|
|
}
|