In this patch, I introduce a new altmacro string delimiter.
This review is the second review in a series of four reviews.
(one for each altmacro feature: LOCAL, string delimiter, string '!' escape sign and absolute expression as a string '%' ).
In the alternate macro mode, you can delimit strings with matching angle brackets <..>
when using it as a part of calling macro arguments.
As described in the https://sourceware.org/binutils/docs-2.27/as/Altmacro.html
"<string>
You can delimit strings with matching angle brackets."
assumptions:
- If an argument begins with '<' and ends with '>'. The argument is considered as a string.
- Except adding new string mark '<..>', a regular macro behavior is expected.
- The altmacro cannot affect the regular less/greater behavior.
- If a comma is present inside an angle brackets it considered as a character and not as a separator.
Delimiter