diff options
author | Geoffrey Keating <geoffk@apple.com> | 2002-12-17 05:18:51 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2002-12-17 05:18:51 +0000 |
commit | 7a975113a8c4970f3973e6d63d336441abe0aaf4 (patch) | |
tree | 7d901b5b82ce9e3dee284e3767d5868ebd9b3ba7 /gcc/gcc.c | |
parent | 5ecf91d13a7de40c79368145fcb00241e32a9992 (diff) | |
download | gcc-7a975113a8c4970f3973e6d63d336441abe0aaf4.zip gcc-7a975113a8c4970f3973e6d63d336441abe0aaf4.tar.gz gcc-7a975113a8c4970f3973e6d63d336441abe0aaf4.tar.bz2 |
* gcc.c (validate_switches): Allow '@' as a switch name.
From-SVN: r60194
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6778,7 +6778,7 @@ next_member: atom = p; while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '=' - || *p == ',' || *p == '.') + || *p == ',' || *p == '.' || *p == '@') p++; len = p - atom; |