Commit 7a975113 by Geoffrey Keating Committed by Geoffrey Keating

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

From-SVN: r60194
parent 5ecf91d1
2002-12-16 Geoffrey Keating <geoffk@apple.com>
* gcc.c (validate_switches): Allow '@' as a switch name.
2002-12-16 Loren J. Rittle <ljrittle@acm.org>
* Makefile.in (gcov-iov.h): Improve portability.
......
......@@ -6778,7 +6778,7 @@ next_member:
atom = p;
while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
|| *p == ',' || *p == '.')
|| *p == ',' || *p == '.' || *p == '@')
p++;
len = p - atom;
......
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