We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 833d5d9 commit 0508258Copy full SHA for 0508258
src/exp.c
@@ -994,6 +994,8 @@ const char *pushsymbol(const char *str)
994
*ptr == '.' ||
995
(*ptr >= 'a' && *ptr <= 'z') ||
996
(*ptr == '@') || // UCASM compatibility, allow at-sign to apear in label names
997
+ (*ptr == '{') || // allow dynamic labels to use macro arguments
998
+ (*ptr == '}') ||
999
(*ptr >= 'A' && *ptr <= 'Z') ||
1000
(*ptr >= '0' && *ptr <= '9');
1001
++ptr
0 commit comments