aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/gcc.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c70fef6..b9ffa05 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 3f37fce..b66d53c 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -6778,7 +6778,7 @@ next_member:
atom = p;
while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
- || *p == ',' || *p == '.')
+ || *p == ',' || *p == '.' || *p == '@')
p++;
len = p - atom;