标签: gcc assembly macros gas
例如,
.macro a jmp 1f 1: .endm jmp 1f a ... 1:
外部跳转旨在转到外部1:。但是中间是a,它会跳到1:内的a。有没有一种简单的方法可以在宏中创建不干扰外层镜的标签?
1:
a