OSDN Git Service

cp:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Dec 2001 20:11:34 +0000 (20:11 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Dec 2001 20:11:34 +0000 (20:11 +0000)
PR g++/51
* parse.y (frob_specs): Indicate it is a language linkage which
contained the extern.
* decl.c (grokdeclarator): Allow extern language linkage with
other specifiers.
testsuite:
* g++.dg/other/linkage1.C: New test.
* g++.old-deja/g++.brendan/err-msg2.C: Alter to avoid two
specifiers.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47891 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/parse.y
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/other/linkage1.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.brendan/err-msg2.C

index 880ef3f..7118688 100644 (file)
@@ -1,3 +1,11 @@
+2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
+
+       PR g++/51
+       * parse.y (frob_specs): Indicate it is a language linkage which
+       contained the extern.
+       * decl.c (grokdeclarator): Allow extern language linkage with
+       other specifiers.
+
 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
 
        PR g++/72
index 8bf940e..690e34c 100644 (file)
@@ -9603,6 +9603,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
   int explicit_int = 0;
   int explicit_char = 0;
   int defaulted_int = 0;
+  int extern_langp = 0;
+  
   tree typedef_decl = NULL_TREE;
   const char *name;
   tree typedef_type = NULL_TREE;
@@ -10043,6 +10045,10 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
                    }
                  else if (RIDBIT_SETP (i, specbits))
                    pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
+                 if (i == (int)RID_EXTERN
+                     && TREE_PURPOSE (spec) == error_mark_node)
+                   /* This extern was part of a language linkage.  */
+                   extern_langp = 1;
                  RIDBIT_SET (i, specbits);
                  goto found;
                }
@@ -10318,7 +10324,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
   if (RIDBIT_ANY_SET (specbits))
     {
       if (RIDBIT_SETP (RID_STATIC, specbits)) nclasses++;
-      if (RIDBIT_SETP (RID_EXTERN, specbits)) nclasses++;
+      if (RIDBIT_SETP (RID_EXTERN, specbits) && !extern_langp) nclasses++;
       if (decl_context == PARM && nclasses > 0)
        error ("storage class specifiers invalid in parameter declarations");
       if (RIDBIT_SETP (RID_TYPEDEF, specbits))
@@ -10329,6 +10335,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
        }
       if (RIDBIT_SETP (RID_AUTO, specbits)) nclasses++;
       if (RIDBIT_SETP (RID_REGISTER, specbits)) nclasses++;
+      if (!nclasses && !friendp && extern_langp)
+       nclasses++;
     }
 
   /* Give error if `virtual' is used outside of class declaration.  */
index a27f288..28a1456 100644 (file)
@@ -119,7 +119,13 @@ frob_specs (specs_attrs, lookups)
     current_declspecs = build_tree_list (NULL_TREE, current_declspecs);
   if (have_extern_spec && !used_extern_spec)
     {
-      current_declspecs = tree_cons (NULL_TREE, 
+      /* We have to indicate that there is an "extern", but that it
+         was part of a language specifier.  For instance,
+        
+           extern "C" typedef int (*Ptr) ();
+
+         is well formed.  */
+      current_declspecs = tree_cons (error_mark_node,
                                     get_identifier ("extern"), 
                                     current_declspecs);
       used_extern_spec = 1;
index 99d04fd..1ff35b2 100644 (file)
@@ -1,3 +1,9 @@
+2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.dg/other/linkage1.C: New test.
+       * g++.old-deja/g++.brendan/err-msg2.C: Alter to avoid two
+       specifiers.
+
 2001-12-11  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * gcc.dg/concat.c: New test.
diff --git a/gcc/testsuite/g++.dg/other/linkage1.C b/gcc/testsuite/g++.dg/other/linkage1.C
new file mode 100644 (file)
index 0000000..c2676ba
--- /dev/null
@@ -0,0 +1,14 @@
+// { dg-do compile }
+
+// Copyright (C) 2001 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 9 Dec 2001 <nathan@nathan@codesourcery.com>
+
+// PR 51
+// This example snippet is from the ISO C++ standard, sect 7.5 para 4:
+
+extern "C" typedef void FUNC_c();
+
+class C {
+  public:
+  static FUNC_c* q;
+};
index 0bfb4c2..a0cfd6a 100644 (file)
@@ -1,4 +1,8 @@
 // Build don't link: 
 // GROUPS passed error-messages
+
 typedef void (*pfv)(double, double);
-extern "C" typedef void (*pfv)(double, double);// ERROR -  multiple.*
+extern "C" {
+  typedef void (*pfv)(double, double); // ERROR - conflicting linkage - XFAIL
+}
+