]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c: Restore "originally defined" struct redefinition messages for C23
authorJoseph Myers <josmyers@redhat.com>
Wed, 23 Oct 2024 00:10:01 +0000 (00:10 +0000)
committerJoseph Myers <josmyers@redhat.com>
Wed, 23 Oct 2024 00:10:01 +0000 (00:10 +0000)
One failure with a -std=gnu23 default that indicates a
quality-of-implementation regression in C23 mode is gcc.dg/pr39084.c,
which loses the expected "originally defined here" message on struct
redefinition errors (which occur in a different place in the front end
for C23 because it is necessary to see the members of the struct to
determine whether the redefinition is valid).  That message seems a
good thing to have both in and out of C23 mode, so add logic to
restore it in the C23 case.

Bootstrapped with no regressions for x86-64-pc-linux-gnu.

gcc/c/
* c-decl.cc (c_struct_parse_info): Add member refloc.
(start_struct): Store refloc in struct_parse_info.
(finish_struct): Give "originally defined" message for C23 struct
redefinition errors.

gcc/testsuite/
* gcc.dg/gnu17-tag-1.c, gcc.dg/gnu23-tag-5.c: New tests.

gcc/c/c-decl.cc
gcc/testsuite/gcc.dg/gnu17-tag-1.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/gnu23-tag-5.c [new file with mode: 0644]

index 3733ecfc13fc4d49c6cd9ab801bbc0e89ce49113..047158eef9d00018270cfe8f85f995960ff53644 100644 (file)
@@ -640,6 +640,8 @@ public:
   /* If warn_cxx_compat, a list of typedef names used when defining
      fields in this struct.  */
   auto_vec<tree> typedefs_seen;
+  /* The location of a previous definition of this struct.  */
+  location_t refloc;
 };
 
 
@@ -9000,6 +9002,7 @@ start_struct (location_t loc, enum tree_code code, tree name,
 
   *enclosing_struct_parse_info = struct_parse_info;
   struct_parse_info = new c_struct_parse_info ();
+  struct_parse_info->refloc = refloc;
 
   /* FIXME: This will issue a warning for a use of a type defined
      within a statement expr used within sizeof, et. al.  This is not
@@ -9896,10 +9899,18 @@ finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
        {
          TYPE_STUB_DECL (vistype) = TYPE_STUB_DECL (t);
          if (c_type_variably_modified_p (t))
-           error ("redefinition of struct or union %qT with variably "
-                  "modified type", t);
+           {
+             error ("redefinition of struct or union %qT with variably "
+                    "modified type", t);
+             if (struct_parse_info->refloc != UNKNOWN_LOCATION)
+               inform (struct_parse_info->refloc, "originally defined here");
+           }
          else if (!comptypes_same_p (t, vistype))
-           error ("redefinition of struct or union %qT", t);
+           {
+             error ("redefinition of struct or union %qT", t);
+             if (struct_parse_info->refloc != UNKNOWN_LOCATION)
+               inform (struct_parse_info->refloc, "originally defined here");
+           }
        }
     }
 
diff --git a/gcc/testsuite/gcc.dg/gnu17-tag-1.c b/gcc/testsuite/gcc.dg/gnu17-tag-1.c
new file mode 100644 (file)
index 0000000..2c548aa
--- /dev/null
@@ -0,0 +1,13 @@
+/* Test "originally defined" message for struct redefinition for C17.  */
+/* { dg-do compile } */
+/* { dg-options "-std=gnu17" } */
+
+struct s { int i; }; /* { dg-message "originally defined" } */
+struct s { int j; }; /* { dg-error "redefinition" } */
+
+void
+f (int x)
+{
+  struct t { int (*a)[x]; }; /* { dg-message "originally defined" } */
+  struct t { int (*a)[x]; }; /* { dg-error "redefinition" } */
+}
diff --git a/gcc/testsuite/gcc.dg/gnu23-tag-5.c b/gcc/testsuite/gcc.dg/gnu23-tag-5.c
new file mode 100644 (file)
index 0000000..bb5670e
--- /dev/null
@@ -0,0 +1,13 @@
+/* Test "originally defined" message for struct redefinition for C23.  */
+/* { dg-do compile } */
+/* { dg-options "-std=gnu23" } */
+
+struct s { int i; }; /* { dg-message "originally defined" } */
+struct s { int j; }; /* { dg-error "redefinition" } */
+
+void
+f (int x)
+{
+  struct t { int (*a)[x]; }; /* { dg-message "originally defined" } */
+  struct t { int (*a)[x]; }; /* { dg-error "redefinition" } */
+}