* gcc.c (validate_switches): Allow '@' as a switch name.
From-SVN: r60194
This commit is contained in:
parent
5ecf91d13a
commit
7a975113a8
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -6778,7 +6778,7 @@ next_member:
|
|||
|
||||
atom = p;
|
||||
while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
|
||||
|| *p == ',' || *p == '.')
|
||||
|| *p == ',' || *p == '.' || *p == '@')
|
||||
p++;
|
||||
len = p - atom;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue