[llvm] r192775 - Revert r192758 (and r192759), "MC: Better handling of tricky symbol and section names"

Rafael EspĂ­ndola rafael.espindola at gmail.com
Wed Oct 16 07:02:57 PDT 2013


On 16 October 2013 09:50, David Majnemer <david.majnemer at gmail.com> wrote:
> The official GNU Assembler documentation seems to say that quotes in section
> names are fine:
>
> "To generate a symbol name containing multibyte characters enclose it within
> double quotes and use escape codes. [1]"
>

It is strange. On linux, this works

.global "@feat.00";
.set "@feat.00", 1

but this fails

.global "@feat.00";
"@feat.00" = 1

Maybe we just need to change the asm streamer to use .set.

Cheers,
Rafael



More information about the llvm-commits mailing list