re PR c/69819 (ICE on invalid code on x86_64-linux-gnu in tree check: expected functi...
authorMarek Polacek <polacek@redhat.com>
Wed, 24 Feb 2016 21:47:59 +0000 (21:47 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Wed, 24 Feb 2016 21:47:59 +0000 (21:47 +0000)
PR c/69819
* c-decl.c (finish_decl): Don't update the copy of the type of a
different decl type.

* gcc.dg/pr69819.c: New test.

From-SVN: r233683

gcc/c/ChangeLog
gcc/c/c-decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr69819.c [new file with mode: 0644]

index d0fbaba..f814833 100644 (file)
@@ -1,3 +1,9 @@
+2016-02-24  Marek Polacek  <polacek@redhat.com>
+
+       PR c/69819
+       * c-decl.c (finish_decl): Don't update the copy of the type of a
+       different decl type.
+
 2016-02-23  Jakub Jelinek  <jakub@redhat.com>
 
        PR objc/69844
index 8e332f8..298036a 100644 (file)
@@ -4743,7 +4743,7 @@ finish_decl (tree decl, location_t init_loc, tree init,
              struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
              while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
                b_ext = b_ext->shadowed;
-             if (b_ext)
+             if (b_ext && TREE_CODE (decl) == TREE_CODE (b_ext->decl))
                {
                  if (b_ext->u.type && comptypes (b_ext->u.type, type))
                    b_ext->u.type = composite_type (b_ext->u.type, type);
index 311232f..4ba14fc 100644 (file)
@@ -1,3 +1,8 @@
+2016-02-24  Marek Polacek  <polacek@redhat.com>
+
+       PR c/69819
+       * gcc.dg/pr69819.c: New test.
+
 2016-02-24  Martin Sebor  <msebor@redhat.com>
 
        PR c++/69912
diff --git a/gcc/testsuite/gcc.dg/pr69819.c b/gcc/testsuite/gcc.dg/pr69819.c
new file mode 100644 (file)
index 0000000..a9594dd
--- /dev/null
@@ -0,0 +1,5 @@
+/* PR c/69819 */
+/* { dg-do compile } */
+
+void foo () { }
+int foo[] = { 0 }; /* { dg-error ".foo. redeclared as different kind of symbol" } */