xref: /aosp_15_r20/external/llvm/test/tools/gold/X86/linkonce-weak.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as %s -o %t.o
2*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as %p/Inputs/linkonce-weak.ll -o %t2.o
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Worker; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
5*9880d681SAndroid Build Coastguard Worker; RUN:    --plugin-opt=emit-llvm \
6*9880d681SAndroid Build Coastguard Worker; RUN:    -shared %t.o %t2.o -o %t3.o
7*9880d681SAndroid Build Coastguard Worker; RUN: llvm-dis %t3.o -o - | FileCheck %s
8*9880d681SAndroid Build Coastguard Worker
9*9880d681SAndroid Build Coastguard Worker; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
10*9880d681SAndroid Build Coastguard Worker; RUN:    --plugin-opt=emit-llvm \
11*9880d681SAndroid Build Coastguard Worker; RUN:    -shared %t2.o %t.o -o %t3.o
12*9880d681SAndroid Build Coastguard Worker; RUN: llvm-dis %t3.o -o - | FileCheck %s
13*9880d681SAndroid Build Coastguard Worker
14*9880d681SAndroid Build Coastguard Workerdefine linkonce_odr void @f() !dbg !4 {
15*9880d681SAndroid Build Coastguard Worker  ret void, !dbg !10
16*9880d681SAndroid Build Coastguard Worker}
17*9880d681SAndroid Build Coastguard Worker
18*9880d681SAndroid Build Coastguard Worker; Test that we get a weak_odr regardless of the order of the files
19*9880d681SAndroid Build Coastguard Worker; CHECK: define weak_odr void @f()
20*9880d681SAndroid Build Coastguard Worker
21*9880d681SAndroid Build Coastguard Worker; Test that we only get a single DISubprogram for @f
22*9880d681SAndroid Build Coastguard Worker; CHECK: !DISubprogram(name: "f"
23*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: !DISubprogram(name: "f"
24*9880d681SAndroid Build Coastguard Worker
25*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0}
26*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!7, !8}
27*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!9}
28*9880d681SAndroid Build Coastguard Worker
29*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.8.0 (trunk 251407) (llvm/trunk 251401)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
30*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "linkonce-weak.c", directory: ".")
31*9880d681SAndroid Build Coastguard Worker!2 = !{}
32*9880d681SAndroid Build Coastguard Worker!4 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 1, type: !5, isLocal: false, isDefinition: true, scopeLine: 1, isOptimized: true, unit: !0, variables: !2)
33*9880d681SAndroid Build Coastguard Worker!5 = !DISubroutineType(types: !6)
34*9880d681SAndroid Build Coastguard Worker!6 = !{null}
35*9880d681SAndroid Build Coastguard Worker!7 = !{i32 2, !"Dwarf Version", i32 4}
36*9880d681SAndroid Build Coastguard Worker!8 = !{i32 2, !"Debug Info Version", i32 3}
37*9880d681SAndroid Build Coastguard Worker!9 = !{!"clang version 3.8.0 (trunk 251407) (llvm/trunk 251401)"}
38*9880d681SAndroid Build Coastguard Worker!10 = !DILocation(line: 2, column: 1, scope: !4)
39