https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=217610

--- Comment #1 from Robert Clausecker <[email protected]> ---
As an example, save the following file in test.S and type

    cc -c test.S
    ld -o test test.o
    ./test

on an amd64 machine to reproduce the problem. test.S:

    #include <sys/syscall.h>
        .bss
        .align 4096
    x:  .space 16

        .text
        .globl _start
    _start:
        mov $SYS_exit,%eax
        xor %edi,%edi
        syscall

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to