mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 11:35:51 -04:00
10 lines
227 B
LLVM
10 lines
227 B
LLVM
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; CHECK: maxu
|
|
|
|
define i32 @f(i32 %src, i32 %maxval) nounwind readnone {
|
|
entry:
|
|
%cmp = icmp ult i32 %maxval, %src
|
|
%cond = select i1 %cmp, i32 %src, i32 %maxval
|
|
ret i32 %cond
|
|
}
|