diff options
author | Vincent Lejeune <vljn@ovi.com> | 2013-11-06 17:36:04 +0000 |
---|---|---|
committer | Vincent Lejeune <vljn@ovi.com> | 2013-11-06 17:36:04 +0000 |
commit | 69239a98b69eefc70e68d82282b62583f6e92e10 (patch) | |
tree | 86d55f54146f04593db07b3b6afe0f5f298b6b0f /test/CodeGen/R600 | |
parent | 1b484aba80faa7be88aa93684b4740ac2d908595 (diff) | |
download | external_llvm-69239a98b69eefc70e68d82282b62583f6e92e10.zip external_llvm-69239a98b69eefc70e68d82282b62583f6e92e10.tar.gz external_llvm-69239a98b69eefc70e68d82282b62583f6e92e10.tar.bz2 |
R600: Fix LowerUDIVREM
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600')
-rw-r--r-- | test/CodeGen/R600/udiv.ll | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/test/CodeGen/R600/udiv.ll b/test/CodeGen/R600/udiv.ll index 19c0185..5371321 100644 --- a/test/CodeGen/R600/udiv.ll +++ b/test/CodeGen/R600/udiv.ll @@ -1,13 +1,26 @@ ;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck --check-prefix=EG-CHECK %s ;RUN: llc < %s -march=r600 -mcpu=verde -verify-machineinstrs | FileCheck --check-prefix=SI-CHECK %s +;EG-CHECK-LABEL: @test +;EG-CHECK-NOT: SETGE_INT +;EG-CHECK: CF_END + +define void @test(i32 addrspace(1)* %out, i32 addrspace(1)* %in) { + %b_ptr = getelementptr i32 addrspace(1)* %in, i32 1 + %a = load i32 addrspace(1) * %in + %b = load i32 addrspace(1) * %b_ptr + %result = udiv i32 %a, %b + store i32 %result, i32 addrspace(1)* %out + ret void +} + ;The code generated by udiv 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 udiv -;EG-CHECK: @test2 +;EG-CHECK-LABEL: @test2 ;EG-CHECK: CF_END -;SI-CHECK: @test2 +;SI-CHECK-LABEL: @test2 ;SI-CHECK: S_ENDPGM define void @test2(<2 x i32> addrspace(1)* %out, <2 x i32> addrspace(1)* %in) { @@ -19,9 +32,9 @@ define void @test2(<2 x i32> addrspace(1)* %out, <2 x i32> addrspace(1)* %in) { ret void } -;EG-CHECK: @test4 +;EG-CHECK-LABEL: @test4 ;EG-CHECK: CF_END -;SI-CHECK: @test4 +;SI-CHECK-LABEL: @test4 ;SI-CHECK: S_ENDPGM define void @test4(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) { |