/cp
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Oct 2012 19:13:41 +0000 (19:13 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Oct 2012 19:13:41 +0000 (19:13 +0000)
2012-10-15  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/50080 (again)
* parser.c (cp_parser_optional_template_keyword): When -pedantic
and C++98 mode restore pre-Core/468 behavior.

/testsuite
2012-10-15  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/50080 (again)
* g++.dg/parse/tmpl-outside2.C: Tweak, error in C++98.
* g++.dg/parse/tmpl-outside1.C: Likewise.
* g++.dg/template/qualttp18.C: Likewise.
* g++.old-deja/g++.pt/memtemp87.C: Likewise.
* g++.old-deja/g++.pt/overload13.C: Likewise.

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

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/tmpl-outside1.C
gcc/testsuite/g++.dg/parse/tmpl-outside2.C
gcc/testsuite/g++.dg/template/qualttp18.C
gcc/testsuite/g++.old-deja/g++.pt/memtemp87.C
gcc/testsuite/g++.old-deja/g++.pt/overload13.C

index 5239e7e..555345f 100644 (file)
@@ -1,5 +1,11 @@
 2012-10-15  Paolo Carlini  <paolo.carlini@oracle.com>
 
+       PR c++/50080 (again)
+       * parser.c (cp_parser_optional_template_keyword): When -pedantic
+       and C++98 mode restore pre-Core/468 behavior.
+
+2012-10-15  Paolo Carlini  <paolo.carlini@oracle.com>
+
        PR c++/50080
        * parser.c (cp_parser_optional_template_keyword): Implement
        Core/468, allow outside template.
index 965bc62..853d789 100644 (file)
@@ -23252,9 +23252,29 @@ cp_parser_optional_template_keyword (cp_parser *parser)
 {
   if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
     {
-      /* Consume the `template' keyword.  */
-      cp_lexer_consume_token (parser->lexer);
-      return true;
+      /* In C++98 the `template' keyword can only be used within templates;
+        outside templates the parser can always figure out what is a
+        template and what is not.  In C++11,  per the resolution of DR 468,
+        `template' is allowed in cases where it is not strictly necessary.  */
+      if (!processing_template_decl
+         && pedantic && cxx_dialect == cxx98)
+       {
+         cp_token *token = cp_lexer_peek_token (parser->lexer);
+         pedwarn (token->location, OPT_Wpedantic,
+                  "in C++98 %<template%> (as a disambiguator) is only "
+                  "allowed within templates");
+         /* If this part of the token stream is rescanned, the same
+            error message would be generated.  So, we purge the token
+            from the stream.  */
+         cp_lexer_purge_token (parser->lexer);
+         return false;
+       }
+      else
+       {
+         /* Consume the `template' keyword.  */
+         cp_lexer_consume_token (parser->lexer);
+         return true;
+       }
     }
   return false;
 }
index ea4a46f..99c7a70 100644 (file)
@@ -1,3 +1,12 @@
+2012-10-15  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/50080 (again)
+       * g++.dg/parse/tmpl-outside2.C: Tweak, error in C++98.
+       * g++.dg/parse/tmpl-outside1.C: Likewise.
+       * g++.dg/template/qualttp18.C: Likewise.
+       * g++.old-deja/g++.pt/memtemp87.C: Likewise.
+       * g++.old-deja/g++.pt/overload13.C: Likewise.
+
 2012-10-15  Uros Bizjak  <ubizjak@gmail.com>
 
        * gcc.target/i386/avx256-unaligned-load-1.c: Update asm scan patterns.
index 0713f17..7d969e4 100644 (file)
@@ -7,4 +7,4 @@ struct X
    template <int i> struct Y {};
 };
 
-typedef X::template Y<0> y;
+typedef X::template Y<0> y; // { dg-error "template|invalid" "" { target c++98 } }
index d35656f..54d39fa 100644 (file)
@@ -15,5 +15,5 @@ void test()
 
 int main()
 {
-  typename A<double>::template B<int> b;
+  typename A<double>::template B<int> b; // { dg-error "template|expected" "" { target c++98 } }
 }
index b4d28da..691517f 100644 (file)
@@ -14,7 +14,7 @@ template <template <class> class TT> struct X
 
 struct C
 {
-       X<A::template B> x;
+       X<A::template B> x;  // { dg-error "template" "" { target c++98 } }
 };
 
 int main()
index 2554518..51a66fd 100644 (file)
@@ -12,4 +12,4 @@ public:
 template<template<class> class>
 class Y {
 };
-Q::template X<int> x;
+Q::template X<int> x; // { dg-error "template" "" { target c++98 } }
index 78a5e6d..9c98514 100644 (file)
@@ -7,5 +7,5 @@ struct A {
 int main ()
 {
   A a;
-  return a.template f (0);
+  return a.template f (0); // { dg-error "template" "" { target c++98 } }
 }