1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CodeGen/Hexagon/maxw.ll
2015-06-17 20:29:33 +00:00

10 lines
226 B
LLVM

; RUN: llc -march=hexagon < %s | FileCheck %s
; CHECK: max
define i32 @f(i32 %src, i32 %maxval) nounwind readnone {
entry:
%cmp = icmp slt i32 %maxval, %src
%cond = select i1 %cmp, i32 %src, i32 %maxval
ret i32 %cond
}