如果我编译这段C代码:
void _start() {
}
调用gcc:
gcc -nostdlib -Os -S foo.c
我得到这个集会清单:
.file "foo.c"
.section .text.unlikely,"x"
LCOLDB0:
.text
LHOTB0:
.globl __start
.def __start; .scl 2; .type 32; .endef
__start:
pushl %ebp
movl %esp, %ebp
popl %ebp
ret
.section .text.unlikely,"x"
LCOLDE0:
.text
LHOTE0:
.ident "GCC: (GNU) 4.9.2"
如您所见,gcc在代码末尾发出了'ret'指令。有没有办法让它不来发布它?