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

10 lines
227 B
LLVM

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