Commit cde26509 by Geoffrey Keating Committed by Geoffrey Keating

* gcc.c (handle_braces): Allow '@' as a switch name.

From-SVN: r60198
parent 9f175208
2002-12-16 Geoffrey Keating <geoffk@apple.com>
* gcc.c (handle_braces): Allow '@' as a switch name.
2002-12-16 Jason Merrill <jason@redhat.com>
* c-semantics.c (add_scope_stmt): Abort if the end SCOPE_STMT
......
......@@ -5611,7 +5611,7 @@ handle_braces (p)
atom = p;
while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '='
|| *p == ',' || *p == '.')
|| *p == ',' || *p == '.' || *p == '@')
p++;
end_atom = p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment