OSDN Git Service

/cp
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 Jun 2008 20:45:25 +0000 (20:45 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 Jun 2008 20:45:25 +0000 (20:45 +0000)
2008-06-27  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/36655
* pt.c (do_decl_instantiation): In c++0x mode do not warn for
extern template.

/testsuite
2008-06-27  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/36655
* g++.dg/cpp0x/extern_template.C: New.

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

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/extern_template.C [new file with mode: 0644]

index df1a46b..e2368b4 100644 (file)
@@ -1,3 +1,9 @@
+2008-06-27  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/36655
+       * pt.c (do_decl_instantiation): In c++0x mode do not warn for
+       extern template.
+
 2008-06-24  Jonathan Wakely  <jwakely.gcc@gmail.com>
 
        PR c++/23194
index 9926f3d..3222270 100644 (file)
@@ -14588,8 +14588,8 @@ do_decl_instantiation (tree decl, tree storage)
     ;
   else if (storage == ridpointers[(int) RID_EXTERN])
     {
-      if (pedantic && !in_system_header)
-       pedwarn ("ISO C++ forbids the use of %<extern%> on explicit "
+      if (pedantic && !in_system_header && (cxx_dialect == cxx98))
+       pedwarn ("ISO C++ 1998 forbids the use of %<extern%> on explicit "
                 "instantiations");
       extern_p = 1;
     }
index 4ede6da..6d739ff 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-27  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/36655
+       * g++.dg/cpp0x/extern_template.C: New.
+
 2008-06-27  Jakub Jelinek  <jakub@redhat.com>
 
        * gcc.dg/gomp/pr27388-3.c: Adjust dg-final.
diff --git a/gcc/testsuite/g++.dg/cpp0x/extern_template.C b/gcc/testsuite/g++.dg/cpp0x/extern_template.C
new file mode 100644 (file)
index 0000000..ec2cb78
--- /dev/null
@@ -0,0 +1,4 @@
+// { dg-options "-std=c++0x -pedantic" }
+
+template <typename> void f() {}
+extern template void f<int>();