mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
9 lines
252 B
LLVM
9 lines
252 B
LLVM
|
; RUN: llvm-as < %s | llvm-dis | FileCheck %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
|