blob: 610283d97e2bb4b95544b23b1aff6802c89c7324 [file] [log] [blame]
Colin LeMahieubb71f7d2015-06-17 20:29:33 +00001; RUN: llc -march=hexagon < %s | FileCheck %s
2; CHECK: min
3
4define i64 @f(i64 %src, i64 %maxval) nounwind readnone {
5entry:
6 %cmp = icmp sgt i64 %maxval, %src
7 %cond = select i1 %cmp, i64 %src, i64 %maxval
8 ret i64 %cond
9}