mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
39d5f60f66
llvm-svn: 239935
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 %.
|
|
}
|