decl.c (get_type_quals, [...]): New.
authorPaolo Carlini <paolo.carlini@oracle.com>
Wed, 10 Jul 2019 08:24:54 +0000 (08:24 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 10 Jul 2019 08:24:54 +0000 (08:24 +0000)
/cp
2019-07-10  Paolo Carlini  <paolo.carlini@oracle.com>

* decl.c (get_type_quals,
smallest_type_location (const cp_decl_specifier_seq*)): New.
(check_tag_decl): Use smallest_type_location in error_at about
multiple types in one declaration.
(grokdeclarator): Use locations[ds_complex] in error_at about
complex invalid; use locations[ds_storage_class] in error_at
about static cdtor; use id_loc in error_at about flexible
array member in union; use get_type_quals.

/testsuite
2019-07-10  Paolo Carlini  <paolo.carlini@oracle.com>

* g++.dg/diagnostic/complex-invalid-1.C: New.
* g++.dg/diagnostic/static-cdtor-1.C: Likewise.
* g++.dg/cpp1z/has-unique-obj-representations2.C: Test location
too.
* g++.dg/other/anon-union3.C: Adjust expected location.
* g++.dg/parse/error8.C: Likewise.

From-SVN: r273323

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp1z/has-unique-obj-representations2.C
gcc/testsuite/g++.dg/diagnostic/complex-invalid-1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/diagnostic/static-cdtor-1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/other/anon-union3.C
gcc/testsuite/g++.dg/parse/error8.C

index 7609b206fbfdae0fd676194baaa610cf77f2c52e..bc788c1b446aa8d133a438e67b2ff4d2d62ca971 100644 (file)
@@ -1,3 +1,14 @@
+2019-07-10  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * decl.c (get_type_quals,
+       smallest_type_location (const cp_decl_specifier_seq*)): New.
+       (check_tag_decl): Use smallest_type_location in error_at about
+       multiple types in one declaration.
+       (grokdeclarator): Use locations[ds_complex] in error_at about
+       complex invalid; use locations[ds_storage_class] in error_at
+       about static cdtor; use id_loc in error_at about flexible
+       array member in union; use get_type_quals.
+
 2019-07-09  Martin Sebor  <msebor@redhat.com>
 
        PR c++/61339
index a178b2208df655cd150c6e50a868d0608e12962c..dbcf681c78376f1effa661a0af46a0343891458a 100644 (file)
@@ -100,6 +100,7 @@ static tree build_cp_library_fn (tree, enum tree_code, tree, int);
 static void store_parm_decls (tree);
 static void initialize_local_var (tree, tree);
 static void expand_static_init (tree, tree);
+static location_t smallest_type_location (const cp_decl_specifier_seq*);
 
 /* The following symbols are subsumed in the cp_global_trees array, and
    listed here individually for documentation purposes.
@@ -4802,6 +4803,24 @@ warn_misplaced_attr_for_class_type (location_t location,
            class_type, class_key_or_enum_as_string (class_type));
 }
 
+/* Returns the cv-qualifiers that apply to the type specified
+   by the DECLSPECS.  */
+
+static int
+get_type_quals (const cp_decl_specifier_seq *declspecs)
+{
+  int type_quals = TYPE_UNQUALIFIED;
+
+  if (decl_spec_seq_has_spec_p (declspecs, ds_const))
+    type_quals |= TYPE_QUAL_CONST;
+  if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
+    type_quals |= TYPE_QUAL_VOLATILE;
+  if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
+    type_quals |= TYPE_QUAL_RESTRICT;
+
+  return type_quals;
+}
+
 /* Make sure that a declaration with no declarator is well-formed, i.e.
    just declares a tagged type or anonymous union.
 
@@ -4821,7 +4840,8 @@ check_tag_decl (cp_decl_specifier_seq *declspecs,
   bool error_p = false;
 
   if (declspecs->multiple_types_p)
-    error ("multiple types in one declaration");
+    error_at (smallest_type_location (declspecs),
+             "multiple types in one declaration");
   else if (declspecs->redefined_builtin_type)
     {
       if (!in_system_header_at (input_location))
@@ -10142,6 +10162,13 @@ smallest_type_location (int type_quals, const location_t* locations)
   return min_location (loc, locations[ds_type_spec]);
 }
 
+static location_t
+smallest_type_location (const cp_decl_specifier_seq *declspecs)
+{
+  int type_quals = get_type_quals (declspecs);
+  return smallest_type_location (type_quals, declspecs->locations);
+}
+
 /* Check that it's OK to declare a function with the indicated TYPE
    and TYPE_QUALS.  SFK indicates the kind of special function (if any)
    that this function is.  OPTYPE is the type given in a conversion
@@ -10407,7 +10434,7 @@ grokdeclarator (const cp_declarator *declarator,
      a member function.  */
   cp_ref_qualifier rqual = REF_QUAL_NONE;
   /* cv-qualifiers that apply to the type specified by the DECLSPECS.  */
-  int type_quals = TYPE_UNQUALIFIED;
+  int type_quals = get_type_quals (declspecs);
   tree raises = NULL_TREE;
   int template_count = 0;
   tree returned_attrs = NULL_TREE;
@@ -10454,13 +10481,6 @@ grokdeclarator (const cp_declarator *declarator,
   if (concept_p)
     constexpr_p = true;
 
-  if (decl_spec_seq_has_spec_p (declspecs, ds_const))
-    type_quals |= TYPE_QUAL_CONST;
-  if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
-    type_quals |= TYPE_QUAL_VOLATILE;
-  if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
-    type_quals |= TYPE_QUAL_RESTRICT;
-
   if (decl_context == FUNCDEF)
     funcdef_flag = true, decl_context = NORMAL;
   else if (decl_context == MEMFUNCDEF)
@@ -10999,7 +11019,8 @@ grokdeclarator (const cp_declarator *declarator,
   if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
     {
       if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
-       error ("complex invalid for %qs", name);
+       error_at (declspecs->locations[ds_complex],
+                 "complex invalid for %qs", name);
       /* If a modifier is specified, the resulting complex is the complex
         form of TYPE.  E.g, "complex short" is "complex short int".  */
       else if (type == integer_type_node)
@@ -11578,9 +11599,12 @@ grokdeclarator (const cp_declarator *declarator,
                   virtual.  A constructor may not be static.
                   A constructor may not be declared with ref-qualifier. */
                if (staticp == 2)
-                 error ((flags == DTOR_FLAG)
-                        ? G_("destructor cannot be static member function")
-                        : G_("constructor cannot be static member function"));
+                 error_at (declspecs->locations[ds_storage_class],
+                           (flags == DTOR_FLAG)
+                           ? G_("destructor cannot be static member "
+                                "function")
+                           : G_("constructor cannot be static member "
+                                "function"));
                if (memfn_quals)
                  {
                    error ((flags == DTOR_FLAG)
@@ -12438,7 +12462,7 @@ grokdeclarator (const cp_declarator *declarator,
                && (TREE_CODE (ctype) == UNION_TYPE
                    || TREE_CODE (ctype) == QUAL_UNION_TYPE))
              {
-               error ("flexible array member in union");
+               error_at (id_loc, "flexible array member in union");
                type = error_mark_node;
              }
            else
index c9fa127a5cdadc9693871dea410dade8942b42d5..430c508d6e13cdd501748503d7b3277341e04612 100644 (file)
@@ -1,3 +1,12 @@
+2019-07-10  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * g++.dg/diagnostic/complex-invalid-1.C: New.
+       * g++.dg/diagnostic/static-cdtor-1.C: Likewise.
+       * g++.dg/cpp1z/has-unique-obj-representations2.C: Test location
+       too.
+       * g++.dg/other/anon-union3.C: Adjust expected location.
+       * g++.dg/parse/error8.C: Likewise.
+
 2019-07-09  Jan Hubicka  <hubicka@ucw.cz>
 
        * g++.dg/lto/alias-3_0.C: New file.
index c4ae555a92e36b971319c9e3bdce095cffbfe7bb..f1f338829d57986ce7eee3369a10ea2cc5d4f8b8 100644 (file)
@@ -1,7 +1,7 @@
 struct S;
 struct T { S t; };                                     // { dg-error "incomplete type" }
 struct U { int u[sizeof (S)]; };                       // { dg-error "incomplete type" }
-union V { char c; char d[]; };                         // { dg-error "flexible array member in union" }
+union V { char c; char d[]; };                         // { dg-error "24:flexible array member in union" }
 bool a = __has_unique_object_representations (S);      // { dg-error "incomplete type" }
 bool b = __has_unique_object_representations (T);
 bool c = __has_unique_object_representations (U);
diff --git a/gcc/testsuite/g++.dg/diagnostic/complex-invalid-1.C b/gcc/testsuite/g++.dg/diagnostic/complex-invalid-1.C
new file mode 100644 (file)
index 0000000..5a61765
--- /dev/null
@@ -0,0 +1 @@
+__complex__ bool b;  // { dg-error "1:complex invalid" }
diff --git a/gcc/testsuite/g++.dg/diagnostic/static-cdtor-1.C b/gcc/testsuite/g++.dg/diagnostic/static-cdtor-1.C
new file mode 100644 (file)
index 0000000..ae3fd56
--- /dev/null
@@ -0,0 +1,5 @@
+struct S
+{
+  static S();  // { dg-error "3:constructor" }
+  static ~S();  // { dg-error "3:destructor" }
+};
index ca59d0233fb42976b59c57d7cf9d4fd15714d692..6f2946b36981aadd1b09268ab9febacfb90e9d32 100644 (file)
@@ -3,9 +3,9 @@
 class C
 {
   auto union      // { dg-error "storage class" "" { target { ! c++11 } } }
-    {            // { dg-error "auto" "" { target c++11 } .-1 }
+    {            // { dg-error "auto|multiple types" "" { target c++11 } .-1 }
       int a;
-    };            // { dg-error "multiple types" "" { target c++11 } }
+    };
   register union  // { dg-error "storage class" }
     {
       int b;
index 61e42e0299a752e3f3f5dd0bda3d1a206601c75b..135f0784bcfed294ac206a0203ac567190b4c9e4 100644 (file)
@@ -5,5 +5,5 @@ struct A { friend typename struct B; };
 
 
 // { dg-error "28:expected nested-name-specifier before 'struct'" "expected" { target *-*-* } 4 }
-// { dg-error "35:multiple types in one declaration" "multiple" { target *-*-* } 4 }
+// { dg-error "19:multiple types in one declaration" "multiple" { target *-*-* } 4 }
 // { dg-error "12:friend declaration does not name a class or function" "friend decl" { target *-*-* } 4 }