mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
f002d274d3
Summary: This fixes bugzilla bug 24656. Fixes the case where there is a forward reference to a global variable using an ID (i.e. @0). It does this by passing the address space of the initializer pointer for which the forward referenced global is used. llvm-svn: 246788
19 lines
482 B
LLVM
19 lines
482 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
; Make sure the address space of forward decls is preserved
|
|
|
|
; CHECK: @a2 = global i8 addrspace(1)* @a
|
|
; CHECK: @a = addrspace(1) global i8 0
|
|
@a2 = global i8 addrspace(1)* @a
|
|
@a = addrspace(1) global i8 0
|
|
|
|
; Now test with global IDs instead of global names.
|
|
|
|
; CHECK: @a3 = global i8 addrspace(1)* @0
|
|
; CHECK: @0 = addrspace(1) global i8 0
|
|
|
|
@a3 = global i8 addrspace(1)* @0
|
|
@0 = addrspace(1) global i8 0
|
|
|