reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
// REQUIRES: x86
// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
// RUN: ld.lld -shared %t.o -o %t0.so
// RUN: ld.lld -shared -Bsymbolic %t.o -o %t1.so
// RUN: ld.lld -shared -Bsymbolic-functions %t.o -o %t2.so
// RUN: llvm-readobj -S %t0.so | FileCheck -check-prefix=NOOPTION %s
// RUN: llvm-readobj -S %t1.so | FileCheck -check-prefix=SYMBOLIC %s
// RUN: llvm-readobj -S %t2.so | FileCheck -check-prefix=SYMBOLIC %s

// NOOPTION:     Section {
// NOOPTION:       Name: .plt

// SYMBOLIC: Section {
// SYMBOLIC-NOT: Name: .plt

.text
.globl foo
.type foo,@function
foo:
nop

.globl bar
.type bar,@function
bar:
nop

.globl do
.type do,@function
do:
callq foo@PLT
callq bar@PLT

.weak zed
.protected zed
.quad zed