blob: 610283d97e2bb4b95544b23b1aff6802c89c7324 [file] [log] [blame]
; RUN: llc -march=hexagon < %s | FileCheck %s
; CHECK: min
define i64 @f(i64 %src, i64 %maxval) nounwind readnone {
entry:
%cmp = icmp sgt i64 %maxval, %src
%cond = select i1 %cmp, i64 %src, i64 %maxval
ret i64 %cond
}