Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-pe/weakdef-1.s
2023-03-06 14:48:14 +01:00

19 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