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