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.
14 lines
359 B
14 lines
359 B
7 months ago
|
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
||
|
; RUN: verify-uselistorder %s
|
||
|
|
||
|
; CHECK: @c = local_unnamed_addr constant i32 0
|
||
|
@c = local_unnamed_addr constant i32 0
|
||
|
|
||
|
; CHECK: @a = local_unnamed_addr alias i32, i32* @c
|
||
|
@a = local_unnamed_addr alias i32, i32* @c
|
||
|
|
||
|
; CHECK: define void @f() local_unnamed_addr {
|
||
|
define void @f() local_unnamed_addr {
|
||
|
ret void
|
||
|
}
|