decl.c (grokdeclarator): Use id_loc...
authorPaolo Carlini <paolo.carlini@oracle.com>
Sat, 22 Jun 2019 09:36:38 +0000 (09:36 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Sat, 22 Jun 2019 09:36:38 +0000 (09:36 +0000)
/cp
2019-06-22  Paolo Carlini  <paolo.carlini@oracle.com>

* decl.c (grokdeclarator): Use id_loc, typespec_loc, and
locations[ds_storage_class] in a few additional places.

/testsuite
2019-06-22  Paolo Carlini  <paolo.carlini@oracle.com>

* g++.dg/diagnostic/auto-storage-1.C: New.
* g++.dg/diagnostic/no-type-1.C: Likewise.
* g++.dg/diagnostic/no-type-2.C: Likewise.
* g++.dg/diagnostic/top-level-auto-1.C: Likewise.
* g++.dg/cpp0x/auto9.C: Test some locations too.
* g++.dg/cpp1z/register1.C: Likewise.
* g++.dg/cpp1z/register2.C: Likewise.
* g++.dg/cpp1z/register3.C: Likewise.
* g++.dg/other/error34.C: Likewise.

From-SVN: r272584

12 files changed:
gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/auto9.C
gcc/testsuite/g++.dg/cpp1z/register1.C
gcc/testsuite/g++.dg/cpp1z/register2.C
gcc/testsuite/g++.dg/cpp1z/register3.C
gcc/testsuite/g++.dg/diagnostic/auto-storage-1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/diagnostic/no-type-1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/diagnostic/no-type-2.C [new file with mode: 0644]
gcc/testsuite/g++.dg/diagnostic/top-level-auto-1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/other/error34.C

index 4d454b6f9f9b01c1e007bf17118229a58a8c95ae..93b4875de7a4dc397ad352773a86e195704c3b26 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-22  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * decl.c (grokdeclarator): Use id_loc, typespec_loc, and
+       locations[ds_storage_class] in a few additional places.
+
 2019-06-21  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/90909
index 98b54d542a0e6875e801f2cdb60ca1d19f800ef3..bcebdc9c0f525ffddfaa6f9655e13c8cca11f6d7 100644 (file)
@@ -10816,13 +10816,14 @@ grokdeclarator (const cp_declarator *declarator,
       else if (in_system_header_at (input_location) || flag_ms_extensions)
        /* Allow it, sigh.  */;
       else if (! is_main)
-       permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
+       permerror (id_loc, "ISO C++ forbids declaration of %qs with no type",
+                  name);
       else if (pedantic)
-       pedwarn (input_location, OPT_Wpedantic,
+       pedwarn (id_loc, OPT_Wpedantic,
                 "ISO C++ forbids declaration of %qs with no type", name);
       else
-       warning (OPT_Wreturn_type,
-                "ISO C++ forbids declaration of %qs with no type", name);
+       warning_at (id_loc, OPT_Wreturn_type,
+                   "ISO C++ forbids declaration of %qs with no type", name);
 
       if (type_was_error_mark_node && template_parm_flag)
        /* FIXME we should be able to propagate the error_mark_node as is
@@ -11251,7 +11252,8 @@ grokdeclarator (const cp_declarator *declarator,
   else if (toplevel_bindings_p ())
     {
       if (storage_class == sc_auto)
-       error ("top-level declaration of %qs specifies %<auto%>", name);
+       error_at (declspecs->locations[ds_storage_class],
+                 "top-level declaration of %qs specifies %<auto%>", name);
     }
   else if (thread_p
           && storage_class != sc_extern
@@ -12358,9 +12360,10 @@ grokdeclarator (const cp_declarator *declarator,
          && !(cxx_dialect >= cxx17 && template_parm_flag))
        {
          if (cxx_dialect >= cxx14)
-           error ("%<auto%> parameter not permitted in this context");
+           error_at (typespec_loc,
+                     "%<auto%> parameter not permitted in this context");
          else
-           error ("parameter declared %<auto%>");
+           error_at (typespec_loc, "parameter declared %<auto%>");
          type = error_mark_node;
        }
 
@@ -12781,9 +12784,12 @@ grokdeclarator (const cp_declarator *declarator,
        // FIXME:gcc_assert (original_name == dname);
 
        if (storage_class == sc_auto)
-         error ("storage class %<auto%> invalid for function %qs", name);
+         error_at (declspecs->locations[ds_storage_class],
+                   "storage class %<auto%> invalid for function %qs", name);
        else if (storage_class == sc_register)
-         error ("storage class %<register%> invalid for function %qs", name);
+         error_at (declspecs->locations[ds_storage_class],
+                   "storage class %<register%> invalid for function %qs",
+                   name);
        else if (thread_p)
          {
            if (declspecs->gnu_thread_keyword_p)
index 72dcea8a4d26acee9646762507806f0425f364e1..80ea5916fcc77b754179731f6257cf5158ac7fc3 100644 (file)
@@ -1,3 +1,15 @@
+2019-06-22  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * g++.dg/diagnostic/auto-storage-1.C: New.
+       * g++.dg/diagnostic/no-type-1.C: Likewise.
+       * g++.dg/diagnostic/no-type-2.C: Likewise.
+       * g++.dg/diagnostic/top-level-auto-1.C: Likewise.
+       * g++.dg/cpp0x/auto9.C: Test some locations too.
+       * g++.dg/cpp1z/register1.C: Likewise.
+       * g++.dg/cpp1z/register2.C: Likewise.
+       * g++.dg/cpp1z/register3.C: Likewise.
+       * g++.dg/other/error34.C: Likewise.
+
 2019-06-21  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/90909
index 8e49a01beb2ae1f3949d4e8adec3020748fbe614..8d77b0b36673a052afaaccb87d5a1093ca092161 100644 (file)
@@ -78,10 +78,10 @@ enum struct D : auto * { FF = 0 };          // { dg-error "must be an integral type|decl
 void
 bar ()
 {
-  try { } catch (auto i) { }                   // { dg-error "parameter" }
-  try { } catch (auto) { }                     // { dg-error "parameter" }
-  try { } catch (auto *i) { }                  // { dg-error "parameter" }
-  try { } catch (auto *) { }                   // { dg-error "parameter" }
+  try { } catch (auto i) { }                   // { dg-error "18:parameter" }
+  try { } catch (auto) { }                     // { dg-error "18:parameter" }
+  try { } catch (auto *i) { }                  // { dg-error "18:parameter" }
+  try { } catch (auto *) { }                   // { dg-error "18:parameter" }
 }
 
 void
@@ -111,7 +111,7 @@ badthrow2 () throw (auto &)                 // { dg-error "invalid use of|expected" }
 {                                              // { dg-error "dynamic exception specification" "" { target c++17 } .-1 }
 }                                              // { dg-warning "deprecated" "" { target { ! c++17 } } .-2 }
 
-template <auto V = 4> struct G {};             // { dg-error "auto" "" { target { ! c++17 } } }
+template <auto V = 4> struct G {};             // { dg-error "11:parameter" "" { target { ! c++17 } } }
 
 template <typename T> struct H { H (); ~H (); };
 H<auto> h;                                     // { dg-error "invalid|initializer" }
index 44071bd75394d81e3bbe8151537264cffadf0645..fac3498bdf21dd48ca1ed39f01ac25c0f2e568b4 100644 (file)
@@ -10,7 +10,7 @@
 register int a __asm (REG1);   // { dg-bogus "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
 #endif
 register int b;                        // { dg-error "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
-register int c ();             // { dg-error "storage class 'register' invalid for function" }
+register int c ();             // { dg-error "1:storage class 'register' invalid for function" }
 int foo (register int d)       // { dg-error "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
 {
   return d;
index 5d7c9f63c3087723c3e02699ed4407c56be5f506..3688f73f112e6be1d7085b7cb75156b7c16db31e 100644 (file)
@@ -11,7 +11,7 @@
 register int a __asm (REG1);   // { dg-bogus "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
 #endif
 register int b;                        // { dg-bogus "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
-register int c ();             // { dg-error "storage class 'register' invalid for function" }
+register int c ();             // { dg-error "1:storage class 'register' invalid for function" }
 int foo (register int d)       // { dg-bogus "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
 {
   return d;
index 90b7f9d09b7d3b53b1f7443d5ffa39dabb42f064..2b321166dc79d4986ef2515ed1c20bbffba4168a 100644 (file)
@@ -11,7 +11,7 @@
 register int a __asm (REG1);   // { dg-bogus "'register' storage class specifier used" }
 #endif
 register int b;                        // { dg-warning "'register' storage class specifier used" }
-register int c ();             // { dg-error "storage class 'register' invalid for function" }
+register int c ();             // { dg-error "1:storage class 'register' invalid for function" }
 int foo (register int d)       // { dg-warning "'register' storage class specifier used" }
 {
   return d;
diff --git a/gcc/testsuite/g++.dg/diagnostic/auto-storage-1.C b/gcc/testsuite/g++.dg/diagnostic/auto-storage-1.C
new file mode 100644 (file)
index 0000000..6137825
--- /dev/null
@@ -0,0 +1,6 @@
+// { dg-do compile { target c++98_only } }
+
+void foo()
+{
+  auto void bar();  // { dg-error "3:storage class .auto. invalid for function" }
+}
diff --git a/gcc/testsuite/g++.dg/diagnostic/no-type-1.C b/gcc/testsuite/g++.dg/diagnostic/no-type-1.C
new file mode 100644 (file)
index 0000000..8c892e5
--- /dev/null
@@ -0,0 +1 @@
+main() {}  // { dg-error "1:ISO C\\+\\+ forbids declaration" }
diff --git a/gcc/testsuite/g++.dg/diagnostic/no-type-2.C b/gcc/testsuite/g++.dg/diagnostic/no-type-2.C
new file mode 100644 (file)
index 0000000..8a7c627
--- /dev/null
@@ -0,0 +1,3 @@
+// { dg-options "-w" }
+
+foo() {}  // { dg-error "1:ISO C\\+\\+ forbids declaration" }
diff --git a/gcc/testsuite/g++.dg/diagnostic/top-level-auto-1.C b/gcc/testsuite/g++.dg/diagnostic/top-level-auto-1.C
new file mode 100644 (file)
index 0000000..b9f74f7
--- /dev/null
@@ -0,0 +1,3 @@
+// { dg-do compile { target c++98_only } }
+
+auto int i;  // { dg-error "1:top-level declaration of .i. specifies .auto." }
index f6b44888f4802048eebad204897f1183becb5fa6..7bcea434322470ab79d465ca692fdb54b703d5b9 100644 (file)
@@ -2,5 +2,5 @@
 // { dg-do compile }
 // { dg-options "" }
 
-S () : str(__PRETTY_FUNCTION__) { return S(); }        // { dg-error "forbids declaration" "decl" }
+S () : str(__PRETTY_FUNCTION__) { return S(); }        // { dg-error "1:ISO C\\+\\+ forbids declaration" "decl" }
 // { dg-error "only constructors" "constructor" { target *-*-* } .-1 }