forked from OSchip/llvm-project
53 lines
1.9 KiB
Plaintext
53 lines
1.9 KiB
Plaintext
# Test that we are able to layout multiple weak symbols
|
|
# properly
|
|
|
|
RUN: lld -flavor old-gnu -target x86_64 %p/Inputs/multiweaksyms.o \
|
|
RUN: --noinhibit-exec -static --output-filetype=yaml -o %t
|
|
RUN: FileCheck %s -check-prefix=WEAKSYMS < %t
|
|
|
|
WEAKSYMS: - type: data
|
|
WEAKSYMS: alignment: 8
|
|
WEAKSYMS: references:
|
|
WEAKSYMS: - kind: layout-after
|
|
WEAKSYMS: offset: 0
|
|
WEAKSYMS: target: [[L001:[-a-zA-Z0-9_]+]]
|
|
WEAKSYMS: - name: myfn2
|
|
WEAKSYMS: scope: global
|
|
WEAKSYMS: type: data
|
|
WEAKSYMS: merge: as-weak
|
|
WEAKSYMS: alignment: 8
|
|
WEAKSYMS: references:
|
|
WEAKSYMS: - kind: layout-after
|
|
WEAKSYMS: offset: 0
|
|
WEAKSYMS: target: [[L001]]
|
|
WEAKSYMS: - ref-name: [[L001]]
|
|
WEAKSYMS: scope: global
|
|
WEAKSYMS: type: data
|
|
WEAKSYMS: content: [ 00, 00, 00, 00, 00, 00, 00, 00 ]
|
|
WEAKSYMS: alignment: 8
|
|
WEAKSYMS: references:
|
|
WEAKSYMS: - kind: R_X86_64_64
|
|
WEAKSYMS: offset: 0
|
|
WEAKSYMS: target: test
|
|
WEAKSYMS: - kind: layout-after
|
|
WEAKSYMS: offset: 0
|
|
WEAKSYMS: target: [[L003:[-a-zA-Z0-9_]+]]
|
|
WEAKSYMS: - name: myfn1
|
|
WEAKSYMS: scope: global
|
|
WEAKSYMS: type: data
|
|
WEAKSYMS: merge: as-weak
|
|
WEAKSYMS: alignment: 8
|
|
WEAKSYMS: references:
|
|
WEAKSYMS: - kind: layout-after
|
|
WEAKSYMS: offset: 0
|
|
WEAKSYMS: target: [[L003]]
|
|
WEAKSYMS: - ref-name: [[L003]]
|
|
WEAKSYMS: scope: global
|
|
WEAKSYMS: type: data
|
|
WEAKSYMS: content: [ 00, 00, 00, 00, 00, 00, 00, 00 ]
|
|
WEAKSYMS: alignment: 8
|
|
WEAKSYMS: references:
|
|
WEAKSYMS: - kind: R_X86_64_64
|
|
WEAKSYMS: offset: 0
|
|
WEAKSYMS: target: test
|