* 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 dc1de48e0098c4c4bbb46e0ed53aa184abaa30e3..fecf8e7d6e43726db31af4d109190ca970d0c2fd 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 b66d53c720d437ed74ed516bb60280373afc774e..ad1a478a566d6693114026bacda2a7b26b8517c6 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;