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

From-SVN: r60194
This commit is contained in:
Geoffrey Keating 2002-12-17 05:18:51 +00:00 committed by Geoffrey Keating
parent 5ecf91d13a
commit 7a975113a8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -6778,7 +6778,7 @@ next_member:
atom = p;
while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
|| *p == ',' || *p == '.')
|| *p == ',' || *p == '.' || *p == '@')
p++;
len = p - atom;