R600: Reorganize lit tests and document how they should be organized
[oota-llvm.git] / test / CodeGen / R600 / urem.ll
1 ;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
8 define 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 }