mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 23:03:29 +08:00
1fd6d11190
bfd/ * coffgen.c (_bfd_coff_gc_mark_hook): Handle PE weak external symbols with a definition. (_bfd_coff_gc_mark_extra_sections): Fix typo. ld/ * testsuite/ld-pe/pe.exp: New test. * testsuite/ld-pe/weakdef-1.s: New test source. * testsuite/ld-pe/weakdef-1.d: New test.
20 lines
267 B
ArmAsm
20 lines
267 B
ArmAsm
.weak _wsym
|
|
.section .data$wsym,"w"
|
|
.align 4
|
|
_wsym:
|
|
.long 1
|
|
|
|
.section .text$start,"x"
|
|
.globl _start
|
|
.def _start; .scl 2; .type 32; .endef
|
|
_start:
|
|
pushl %ebp
|
|
movl %esp, %ebp
|
|
movl _wsym, %eax
|
|
testl %eax, %eax
|
|
sete %al
|
|
movzbl %al, %eax
|
|
nop
|
|
popl %ebp
|
|
ret
|