Having this from compiler:
.file "b.c"
.text
.globl _start
.type _start, @function
_start:
pushq %rbp
movq %rsp, %rbp
nop
popq %rbp
ret
.size _start, .-_start
.ident "GCC: (Debian 8.3.0-6) 8.3.0"
.section .note.GNU-stack,"",@progbits
should be simple, but why does it sigint? (Command terminated
), when there is nothing the program does?
Build with
$cc -S -fno-asynchronous-unwind-tables -fno-dwarf2-cfi-asm b.c