mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00: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
|
||
|
}
|