mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
62a8d8b89a
llvm-svn: 195034
32 lines
830 B
LLVM
32 lines
830 B
LLVM
; RUN: llc -march=r600 -mcpu=SI < %s | FileCheck %s
|
|
|
|
; Test that codegenprepare understands address space sizes
|
|
|
|
%struct.foo = type { [3 x float], [3 x float] }
|
|
|
|
; CHECK-LABEL: @do_as_ptr_calcs:
|
|
; CHECK: S_ADD_I32 {{s[0-9]+}},
|
|
; CHECK: S_ADD_I32 [[SREG1:s[0-9]+]],
|
|
; CHECK: V_MOV_B32_e32 [[VREG1:v[0-9]+]], [[SREG1]]
|
|
; CHECK: DS_READ_B32 [[VREG1]],
|
|
define void @do_as_ptr_calcs(%struct.foo addrspace(3)* nocapture %ptr) nounwind {
|
|
entry:
|
|
%x = getelementptr inbounds %struct.foo addrspace(3)* %ptr, i32 0, i32 1, i32 0
|
|
%y = getelementptr inbounds %struct.foo addrspace(3)* %ptr, i32 0, i32 1, i32 2
|
|
br label %bb32
|
|
|
|
bb32:
|
|
%a = load float addrspace(3)* %x, align 4
|
|
%b = load float addrspace(3)* %y, align 4
|
|
%cmp = fcmp one float %a, %b
|
|
br i1 %cmp, label %bb34, label %bb33
|
|
|
|
bb33:
|
|
unreachable
|
|
|
|
bb34:
|
|
unreachable
|
|
}
|
|
|
|
|