mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 09:54:09 +00:00
1ce9e00f8b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49970 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|
|
|