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