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