This is an archive of the discontinued LLVM Phabricator instance.

llvm-mc: AsmParser: handle '\v' as an escaped character
AbandonedPublic

Authored by thegameg on Mar 29 2016, 6:24 PM.

Details

Summary
  • lib/MC/MCAsmStreamer.cpp: Print '\v' as the escaped sequence.
  • lib/MC/MCParser/AsmParser.cpp: Add '\v' to the escaped characters list.
  • test/MC/AsmParser/directive_ascii.s: Update escaped characters test.

Diff Detail

Event Timeline

thegameg updated this revision to Diff 52014.Mar 29 2016, 6:24 PM
thegameg retitled this revision from to llvm-mc: AsmParser: handle '\v' as an escaped character.
thegameg updated this object.
thegameg added reviewers: ddunbar, grosbach.
thegameg added a subscriber: llvm-commits.

Is this a gas feature. It is not listed in
https://sourceware.org/binutils/docs/as/Strings.html#Strings.

Cheers,
Rafael

thegameg abandoned this revision.Apr 3 2016, 9:51 AM

Is this a gas feature. It is not listed in
https://sourceware.org/binutils/docs/as/Strings.html#Strings.

Indeed, my bad. I just noticed that none of those extensions are implemented.
I'll drop the patch.

Thanks,
Francis