让gcc不发出' ret'功能结束时的指令

时间:2015-01-17 16:06:02

标签: c gcc assembly compilation

如果我编译这段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'指令。有没有办法让它来发布它?

1 个答案:

答案 0 :(得分:4)

在你的函数中调用__builtin_unreachable();告诉gcc它不需要在结尾返回,因为它不会到达终点。