blob: 7b1e3bac0b7b085909f73c5e8505e53b716b7fc5 (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: llc -mtriple=hexagon < %s | FileCheck %s
; CHECK: min
define i32 @f(i32 %src, i32 %maxval) nounwind readnone {
entry:
%cmp = icmp sgt i32 %maxval, %src
%cond = select i1 %cmp, i32 %src, i32 %maxval
ret i32 %cond
}
|