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.
12 lines
324 B
12 lines
324 B
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
|
|
@0 = private constant i32 0
|
|
; CHECK: @0 = private constant i32 0
|
|
@1 = private constant i32 1
|
|
; CHECK: @1 = private constant i32 1
|
|
|
|
@2 = private alias i32, i32* @3
|
|
; CHECK: @2 = private alias i32, i32* @3
|
|
@3 = private alias i32, i32* @1
|
|
; CHECK: @3 = private alias i32, i32* @1
|