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