summaryrefslogtreecommitdiff
path: root/test/CodeGen/Hexagon/minu-zext-16.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Hexagon/minu-zext-16.ll')
-rw-r--r--test/CodeGen/Hexagon/minu-zext-16.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/Hexagon/minu-zext-16.ll b/test/CodeGen/Hexagon/minu-zext-16.ll
new file mode 100644
index 000000000000..e27507da3d44
--- /dev/null
+++ b/test/CodeGen/Hexagon/minu-zext-16.ll
@@ -0,0 +1,11 @@
+; 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 %.
+}