How do I tell GCC asm that an input register is clobbered?

折月煮酒 提交于 2019-11-29 11:01:01

Just make a useless temp for the output to go into and the compiler will optimize it out. For example:

__asm__("mull\t%2" : "=d"(div10), "=a"((int){0})
    : "a"(UINT32_C(0x1999999A)), "r"(number) : "cc");

That's the easiest way I know to handle clobbered inputs.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!