Home | History | Annotate | Download | only in R600
      1 ;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
      2 
      3 ;The code generated by udiv 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 udiv
      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 = udiv <4 x i32> %a, %b
     13   store <4 x i32> %result, <4 x i32> addrspace(1)* %out
     14   ret void
     15 }
     16