其他分享
首页 > 其他分享> > 错误的寄存器’%rbx’与’l’后缀一起使用

错误的寄存器’%rbx’与’l’后缀一起使用

作者:互联网

我正在尝试使用gcc编译器在linux下编译此代码:

static inline unsigned long get_current(void)
{
    unsigned long current;

    asm volatile (
    " movl %%esp, %%eax;"
    " andl %1, %%eax;"
    " movl (%%eax), %0;"
    : "=r" (current)
    : "i" (0xfffff000)
    );
    return current;
}

但是我收到了这个错误:

program.c: Assembler messages: program.c:455: Error: incorrect
register `%rbx' used with `l' suffix

这有什么不对?

解决方法:

显然,你正在编译64位.如果它不是您想要的,请尝试使用gcc -m32,或者使用64位寄存器(%esp在x64上完全没有意义).

标签:c-3,linux,assembly,gcc,inline-assembly
来源: https://codeday.me/bug/20190823/1696110.html