A number of X86 tests were accidentally disabled in https://reviews.llvm.org/D73568. This commit re-enables those tests. ``` $ for x86_test in $(gg 'REQUIRES: x86$' llvm/test | fst); do sed -i "" '/REQUIRES: x86/d' $x86_test; done ``` (Note that 'x86' is not an available feature, that's what caused the tests to be disabled.)
28 lines
487 B
Plaintext
28 lines
487 B
Plaintext
// partitions.elf was generated by running this test in lld:
|
|
|
|
// RUN: llvm-mc %s -o %t.o -filetype=obj --triple=x86_64-unknown-linux
|
|
// RUN: ld.lld %t.o -o %t --export-dynamic --gc-sections
|
|
|
|
.section .llvm_sympart.g1,"",@llvm_sympart
|
|
.asciz "part1"
|
|
.quad g1
|
|
|
|
.section .llvm_sympart.g2,"",@llvm_sympart
|
|
.asciz "part2"
|
|
.quad g2
|
|
|
|
.section .text0,"ax",@progbits
|
|
.globl _start
|
|
_start:
|
|
ret
|
|
|
|
.section .bss1,"aw",@nobits
|
|
.globl g1
|
|
g1:
|
|
.zero 8
|
|
|
|
.section .bss2,"aw",@nobits
|
|
.globl g2
|
|
g2:
|
|
.zero 16
|