mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
01ae03b5b9
pr17704a_test.s is a x86_64 assembly file, but it invokes IA32 exit syscall with "int 0x80". This causes a segfault on kernels with CONFIG_IA32_EMULATION disabled. gold/ * testsuite/pr17704a_test.s (_start): Invoke x86_64 exit syscall instead of its IA32 counterpart.
24 lines
318 B
ArmAsm
24 lines
318 B
ArmAsm
nop
|
|
.section .text.foo,"axG",@progbits,foo,comdat
|
|
foo:
|
|
ret
|
|
|
|
.section .text.bar,"axG",@progbits,bar,comdat
|
|
.align 2
|
|
bar:
|
|
ret
|
|
|
|
.section .text._start,"ax",@progbits
|
|
.globl _start
|
|
_start:
|
|
leaq bar(%rip), %rsi
|
|
testb $1, %sil
|
|
je .L9
|
|
mov $60, %eax
|
|
mov $1, %rdi
|
|
syscall
|
|
.L9:
|
|
mov $60, %eax
|
|
mov $0, %rdi
|
|
syscall
|