gpt4 book ai didi

c - 使用 goto 扩展 asm,包括 gcc 文档中的一个示例,无法编译

转载 作者:行者123 更新时间:2023-12-03 21:45:02 24 4
gpt4 key购买 nike

一些使用 goto 限定符的扩展汇编语句无法使用 GCC 10.1.0 进行编译。具体来说,

int foo(int count)
{
asm goto ("dec %0; jb %l[stop]"
: "+r" (count)
:
:
: stop);
return count;
stop:
return 0;
}
(这是 GCC 扩展 asm 文档中的一个示例)无法使用消息 expected ‘:’ before string constant 进行编译。删除 "+r" (count)dec %0 允许它成功编译,但无论我尝试什么,只要在与 goto 标签相同的 asm 语句中提供输出操作数,它都会以同样的方式出错。

最佳答案

asm goto 不允许输出操作数。
这是一个GNU决定。在 c-parser.c 的函数 c_parser_for_statement 中,您可以找到:

/* For asm goto, we don't allow output operands, but reserve
the slot for a future extension that does allow them. */
https://github.com/gcc-mirror/gcc/blob/releases/gcc-10/gcc/c/c-parser.c
然而,这种情况可能会改变,因为在 master 分支中,这条评论不再存在。

关于c - 使用 goto 扩展 asm,包括 gcc 文档中的一个示例,无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65009974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com