Re: [Bug gas/2848] New: macro name syntax changed
Hi Zippel, Until at least 2.15 as accepted a macro like this: .macro foo size,arg,arg2 move\size \arg,\arg2 .endm foo.l %d0,%d1 Another alternative is to restore the old behaviour, which only accepts alphanumeric characters and '_'/'$'. Wou
[Bug gas/2848] New: macro name syntax changed
Until at least 2.15 as accepted a macro like this: .macro foo size,arg,arg2 move\size \arg,\arg2 .endm foo.l %d0,%d1 Sometimes after that the syntax changed to include the dot into the name and this breaks code that was working nicely before. The