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
369 B
14 lines
369 B
; RUN: llvm-as %s -o %t.o
|
|
; RUN: llvm-as %p/Inputs/alias-1.ll -o %t2.o
|
|
; RUN: %gold -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t2.o %t.o \
|
|
; RUN: -plugin-opt=emit-llvm
|
|
; RUN: llvm-dis < %t3.o -o - | FileCheck %s
|
|
|
|
; CHECK-NOT: alias
|
|
; CHECK: @a = global i32 42
|
|
; CHECK-NEXT: @b = global i32 1
|
|
; CHECK-NOT: alias
|
|
|
|
@a = weak alias i32, i32* @b
|
|
@b = global i32 1
|