summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/urem.v4i32.ll
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2013-04-08 18:41:23 +0000
committerDimitry Andric <dim@FreeBSD.org>2013-04-08 18:41:23 +0000
commit4a16efa3e43e35f0cc9efe3a67f620f0017c3d36 (patch)
tree06099edc18d30894081a822b756f117cbe0b8207 /test/CodeGen/R600/urem.v4i32.ll
parent482e7bddf617ae804dc47133cb07eb4aa81e45de (diff)
downloadsrc-test2-4a16efa3e43e35f0cc9efe3a67f620f0017c3d36.tar.gz
src-test2-4a16efa3e43e35f0cc9efe3a67f620f0017c3d36.zip
Notes
Diffstat (limited to 'test/CodeGen/R600/urem.v4i32.ll')
-rw-r--r--test/CodeGen/R600/urem.v4i32.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGen/R600/urem.v4i32.ll b/test/CodeGen/R600/urem.v4i32.ll
new file mode 100644
index 000000000000..2e7388caa6ce
--- /dev/null
+++ b/test/CodeGen/R600/urem.v4i32.ll
@@ -0,0 +1,15 @@
+;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
+
+;The code generated by urem is long and complex and may frequently change.
+;The goal of this test is to make sure the ISel doesn't fail when it gets
+;a v4i32 urem
+;CHECK: RETURN
+
+define void @test(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
+ %b_ptr = getelementptr <4 x i32> addrspace(1)* %in, i32 1
+ %a = load <4 x i32> addrspace(1) * %in
+ %b = load <4 x i32> addrspace(1) * %b_ptr
+ %result = urem <4 x i32> %a, %b
+ store <4 x i32> %result, <4 x i32> addrspace(1)* %out
+ ret void
+}