blob: 2e7388caa6cedea3bc5bd4c38ded25d3f55f6362 [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
6;CHECK: RETURN
7
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}