llvm-6502/test/CodeGen/Hexagon/maxuw.ll

10 lines
227 B
LLVM
Raw Normal View History

; 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
}