mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
6fc90b32e3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239935 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
327 B
LLVM
12 lines
327 B
LLVM
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; CHECK: minu
|
|
|
|
define zeroext i16 @f(i16* noalias nocapture %src) nounwind readonly {
|
|
entry:
|
|
%arrayidx = getelementptr inbounds i16, i16* %src, i32 1
|
|
%0 = load i16, i16* %arrayidx, align 1
|
|
%cmp = icmp ult i16 %0, 32767
|
|
%. = select i1 %cmp, i16 %0, i16 32767
|
|
ret i16 %.
|
|
}
|