blob: e039225dba3e77e91e4638ac4f9834c2f6b90e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
; XFAIL: *
; REQUIRES: asserts
; RUN: llc -mtriple=amdgcn-- < %s
; This is a temporary xfail, as the assembly printer is broken when dealing with
; lowerConstant() trying to return a value of size greater than 8 bytes.
; CHECK-LABEL: nullptr7:
; The exact form of the GCN output depends on how the printer gets fixed.
; GCN-NEXT: .zeroes 5
; R600-NEXT: .long 0
; @nullptr7 = global ptr addrspace(7) addrspacecast (ptr null to ptr addrspace(7))
; CHECK-LABEL: nullptr8:
; The exact form of the GCN output depends on how the printer gets fixed.
; GCN-NEXT: .zeroes 4
; R600-NEXT: .long 0
@nullptr8 = global ptr addrspace(8) addrspacecast (ptr null to ptr addrspace(8))
|