diff options
Diffstat (limited to 'test/COFF/secrel-common.s')
-rw-r--r-- | test/COFF/secrel-common.s | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/test/COFF/secrel-common.s b/test/COFF/secrel-common.s deleted file mode 100644 index 0d3aafcad001..000000000000 --- a/test/COFF/secrel-common.s +++ /dev/null @@ -1,46 +0,0 @@ -# REQUIRES: x86 -# RUN: llvm-mc %s -filetype=obj -triple=x86_64-windows-msvc -o %t.obj -# RUN: lld-link -entry:main -nodefaultlib %t.obj -out:%t.exe -# RUN: llvm-readobj %t.exe -sections -section-data | FileCheck %s - -# Section relocations against common symbols resolve to .bss (merged into .data). - -# CHECK: Sections [ -# CHECK: Section { -# CHECK: Number: 1 -# CHECK: Name: .text (2E 74 65 78 74 00 00 00) -# CHECK: VirtualSize: 0x1 -# CHECK: SectionData ( -# CHECK: 0000: C3 |.| -# CHECK: ) -# CHECK: } -# CHECK: Section { -# CHECK: Number: 2 -# CHECK: Name: .rdata (2E 72 64 61 74 61 00 00) -# CHECK: SectionData ( -# CHECK: 0000: 00020000 03000000 |........| -# CHECK: ) -# CHECK: } -# CHECK: Section { -# CHECK: Number: 3 -# CHECK: Name: .data (2E 64 61 74 61 00 00 00) -# CHECK: VirtualSize: 0x204 -# CHECK: RawDataSize: 512 -# CHECK: } -# CHECK-NOT: Section -# CHECK: ] - -.text -.global main -main: -ret - -.comm common_global,4,2 - -.section .rdata,"dr" -.secrel32 common_global -.secidx common_global -.short 0 - -.section .data,"drw" -.zero 512 |