blob: a2cc0bd2e84e6b428619b24344989d0515fb8829 [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
2
3;The code generated by urem is long and complex and may frequently change.
4;The goal of this test is to make sure the ISel doesn't fail when it gets
5;a v4i32 urem
Vincent Lejeuneb6bfe852013-04-23 17:34:00 +00006;CHECK: CF_END
Tom Stellard75aadc22012-12-11 21:25:42 +00007
8define void @test(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
9 %b_ptr = getelementptr <4 x i32> addrspace(1)* %in, i32 1
10 %a = load <4 x i32> addrspace(1) * %in
11 %b = load <4 x i32> addrspace(1) * %b_ptr
12 %result = urem <4 x i32> %a, %b
13 store <4 x i32> %result, <4 x i32> addrspace(1)* %out
14 ret void
15}