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