diff options
| author | George Rimar <grimar@accesssoftek.com> | 2017-07-25 09:26:35 +0000 |
|---|---|---|
| committer | George Rimar <grimar@accesssoftek.com> | 2017-07-25 09:26:35 +0000 |
| commit | 4c351c65406b27ca71c9febe29eb0f1cd975a10a (patch) | |
| tree | 81687706d4520334e9125448bf6f093b72ef8215 | |
| parent | 4e99426629400ac74ba12dd6c59a5b0c62b5390d (diff) | |
| download | bcm5719-llvm-4c351c65406b27ca71c9febe29eb0f1cd975a10a.tar.gz bcm5719-llvm-4c351c65406b27ca71c9febe29eb0f1cd975a10a.zip | |
[ELF] - Fix init_fini_priority.s test.
Previously .init_array/.fini_array sections
were not unique and we had 3 .init_array sections +
3 .fini_array input sections passed to linker,
instead of 5 + 5.
Differential revision: https://reviews.llvm.org/D35552
llvm-svn: 308958
| -rw-r--r-- | lld/test/ELF/init_fini_priority.s | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/lld/test/ELF/init_fini_priority.s b/lld/test/ELF/init_fini_priority.s index 84e5dc35e9d..b10b925063e 100644 --- a/lld/test/ELF/init_fini_priority.s +++ b/lld/test/ELF/init_fini_priority.s @@ -1,34 +1,46 @@ // RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t +// RUN: llvm-objdump -section-headers %t | FileCheck %s --check-prefix=OBJ // RUN: ld.lld %t -o %t.exe // RUN: llvm-objdump -s %t.exe | FileCheck %s // REQUIRES: x86 +// OBJ: 3 .init_array +// OBJ-NEXT: 4 .init_array.100 +// OBJ-NEXT: 5 .init_array.5 +// OBJ-NEXT: 6 .init_array +// OBJ-NEXT: 7 .init_array +// OBJ-NEXT: 8 .fini_array +// OBJ-NEXT: 9 .fini_array.100 +// OBJ-NEXT: 10 .fini_array.5 +// OBJ-NEXT: 11 .fini_array +// OBJ-NEXT: 12 .fini_array + .globl _start _start: nop -.section .init_array, "aw", @init_array +.section .init_array, "aw", @init_array, unique, 0 .align 8 .byte 1 .section .init_array.100, "aw", @init_array .long 2 .section .init_array.5, "aw", @init_array .byte 3 -.section .init_array, "aw", @init_array +.section .init_array, "aw", @init_array, unique, 1 .byte 4 -.section .init_array, "aw", @init_array +.section .init_array, "aw", @init_array, unique, 2 .byte 5 -.section .fini_array, "aw", @fini_array +.section .fini_array, "aw", @fini_array, unique, 0 .align 8 .byte 0x11 .section .fini_array.100, "aw", @fini_array .long 0x12 .section .fini_array.5, "aw", @fini_array .byte 0x13 -.section .fini_array, "aw", @fini_array +.section .fini_array, "aw", @fini_array, unique, 1 .byte 0x14 -.section .fini_array, "aw", @fini_array +.section .fini_array, "aw", @fini_array, unique, 2 .byte 0x15 // CHECK: Contents of section .init_array: |

