1 ; RUN: llvm-as %s -o %t.o
3 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
4 ; RUN: --plugin-opt=emit-llvm \
5 ; RUN: --plugin-opt=generate-api-file \
6 ; RUN: -shared %t.o -o %t2.o
7 ; RUN: llvm-dis %t2.o -o - | FileCheck %s
8 ; RUN: FileCheck --check-prefix=API %s < %T/../apifile.txt
10 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
11 ; RUN: -m elf_x86_64 --plugin-opt=save-temps \
12 ; RUN: -shared %t.o -o %t3.o
13 ; RUN: llvm-dis %t3.o.bc -o - | FileCheck %s
14 ; RUN: llvm-dis %t3.o.opt.bc -o - | FileCheck --check-prefix=OPT %s
15 ; RUN: llvm-nm %t3.o.o | FileCheck --check-prefix=NM %s
18 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
19 ; RUN: -m elf_x86_64 --plugin-opt=disable-output \
20 ; RUN: -shared %t.o -o %t4.o
21 ; RUN: not test -a %t4.o
25 target triple = "x86_64-unknown-linux-gnu"
27 @g7 = extern_weak global i32
28 ; CHECK-DAG: @g7 = extern_weak global i32
30 @g8 = external global i32
32 ; CHECK: define internal void @f1()
34 define hidden void @f1() {
38 ; CHECK: define hidden void @f2()
39 ; OPT: define hidden void @f2()
40 define hidden void @f2() {
44 @llvm.used = appending global [1 x i8*] [ i8* bitcast (void ()* @f2 to i8*)]
46 ; CHECK: define void @f3()
47 ; OPT: define void @f3()
53 ; CHECK: define internal void @f4()
55 define linkonce_odr void @f4() {
59 ; CHECK: define linkonce_odr void @f5()
60 ; OPT: define linkonce_odr void @f5()
61 define linkonce_odr void @f5() {
64 @g5 = global void()* @f5
66 ; CHECK: define internal void @f6() unnamed_addr
67 ; OPT: define internal void @f6() unnamed_addr
68 define linkonce_odr void @f6() unnamed_addr {
71 @g6 = global void()* @f6
81 ; API: f1 PREVAILING_DEF_IRONLY
82 ; API: f2 PREVAILING_DEF_IRONLY
83 ; API: f3 PREVAILING_DEF_IRONLY_EXP
84 ; API: f4 PREVAILING_DEF_IRONLY_EXP
85 ; API: f5 PREVAILING_DEF_IRONLY_EXP
86 ; API: f6 PREVAILING_DEF_IRONLY_EXP
87 ; API: f7 PREVAILING_DEF_IRONLY_EXP
88 ; API: f8 PREVAILING_DEF_IRONLY_EXP
91 ; API: g5 PREVAILING_DEF_IRONLY_EXP
92 ; API: g6 PREVAILING_DEF_IRONLY_EXP