You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
286 B
13 lines
286 B
4 months ago
|
; RUN: llvm-link %s -S | FileCheck %s
|
||
|
|
||
|
@G = addrspace(2) global i32 256
|
||
|
; CHECK: @G = addrspace(2) global i32
|
||
|
|
||
|
@GA = alias i32, i32 addrspace(2)* @G
|
||
|
; CHECK: @GA = alias i32, i32 addrspace(2)* @G
|
||
|
|
||
|
define void @foo() addrspace(3) {
|
||
|
; CHECK: define void @foo() addrspace(3)
|
||
|
ret void
|
||
|
}
|