mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
Thu May 7 13:20:56 1998 Anders Blomdell <anders.blomdell@control.lth.se>
* gasp.c (grab_label): Permit a label to be a preprocessor variable by permitting a label to start with a backslash.
This commit is contained in:
@@ -1080,7 +1080,7 @@ grab_label (in, out)
|
||||
{
|
||||
int i = 0;
|
||||
sb_reset (out);
|
||||
if (ISFIRSTCHAR (in->ptr[i]))
|
||||
if (ISFIRSTCHAR (in->ptr[i]) || in->ptr[i] == '\\')
|
||||
{
|
||||
sb_add_char (out, in->ptr[i]);
|
||||
i++;
|
||||
|
||||
Reference in New Issue
Block a user