* gcc.c (handle_braces): Allow '@' as a switch name.
authorGeoffrey Keating <geoffk@apple.com>
Tue, 17 Dec 2002 07:49:32 +0000 (07:49 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Tue, 17 Dec 2002 07:49:32 +0000 (07:49 +0000)
From-SVN: r60198

gcc/ChangeLog
gcc/gcc.c

index dc1de48..fecf8e7 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-16  Geoffrey Keating  <geoffk@apple.com>
+
+       * gcc.c (handle_braces): Allow '@' as a switch name.
+
 2002-12-16  Jason Merrill  <jason@redhat.com>
 
        * c-semantics.c (add_scope_stmt): Abort if the end SCOPE_STMT
index b66d53c..ad1a478 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -5611,7 +5611,7 @@ handle_braces (p)
 
       atom = p;
       while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '='
-            || *p == ',' || *p == '.')
+            || *p == ',' || *p == '.' || *p == '@')
        p++;
       end_atom = p;