mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
c310b1f1f3
llvm-svn: 49970
9 lines
256 B
LLVM
9 lines
256 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | not grep {j\[lgbe\]}
|
|
|
|
define i32 @max(i32 %A, i32 %B) {
|
|
%gt = icmp sgt i32 %A, %B ; <i1> [#uses=1]
|
|
%R = select i1 %gt, i32 %A, i32 %B ; <i32> [#uses=1]
|
|
ret i32 %R
|
|
}
|
|
|