]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR debug/48354 (internal compiler error: in splice_child_die, at dwarf2out.c:8064)
authorRichard Guenther <rguenther@suse.de>
Tue, 13 Dec 2011 14:43:44 +0000 (14:43 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Tue, 13 Dec 2011 14:43:44 +0000 (14:43 +0000)
2011-12-13  Richard Guenther  <rguenther@suse.de>

PR lto/48354
* tree.c (find_decls_types_r): Also walk DECL_ORIGINAL_TYPE.
* tree-streamer-in.c (lto_input_ts_decl_non_common_tree_pointers):
Stream DECL_ORIGINAL_TYPE.
* tree-streamer-out.c (write_ts_decl_non_common_tree_pointers):
Likewise.

lto/
* lto.c (lto_ft_decl_non_common): When we merged DECL_ORIGINAL_TYPE
with the type of the TYPE_DECL clear DECL_ORIGINAL_TYPE.

* g++.dg/lto/pr48354-1_0.C: New testcase.

From-SVN: r182286

gcc/ChangeLog
gcc/lto/ChangeLog
gcc/lto/lto.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lto/pr48354-1_0.C [new file with mode: 0644]
gcc/tree-streamer-in.c
gcc/tree-streamer-out.c
gcc/tree.c

index f6ba6b4d6c48c46fcc172ed586bcb1a548ba5261..a7107642c75c961d3f51289e6e4c6cd48389ad32 100644 (file)
@@ -1,3 +1,12 @@
+2011-12-13  Richard Guenther  <rguenther@suse.de>
+
+       PR lto/48354
+       * tree.c (find_decls_types_r): Also walk DECL_ORIGINAL_TYPE.
+       * tree-streamer-in.c (lto_input_ts_decl_non_common_tree_pointers):
+       Stream DECL_ORIGINAL_TYPE.
+       * tree-streamer-out.c (write_ts_decl_non_common_tree_pointers):
+       Likewise.
+
 2011-12-13  Jakub Jelinek  <jakub@redhat.com>
 
        Revert
index 6f13e04220ec6df79588359e0a9b8a8010142e08..2c7d83be7bd7d9cf0f285fe488741187a8c28b17 100644 (file)
@@ -1,3 +1,9 @@
+2011-12-13  Richard Guenther  <rguenther@suse.de>
+
+       PR lto/48354
+       * lto.c (lto_ft_decl_non_common): When we merged DECL_ORIGINAL_TYPE
+       with the type of the TYPE_DECL clear DECL_ORIGINAL_TYPE.
+
 2011-12-01  Uros Bizjak  <ubizjak@gmail.com>
 
        * lto-lang.c (lto_attribute_table): Handle *tm regparm.
index 3b35604af8d64a7ff0fa8878c822362a8c1650a9..accb807cba374d2343716de8f75d67cd9db89d5c 100644 (file)
@@ -381,6 +381,13 @@ lto_ft_decl_non_common (tree t)
   LTO_FIXUP_TREE (DECL_ARGUMENT_FLD (t));
   LTO_FIXUP_TREE (DECL_RESULT_FLD (t));
   LTO_FIXUP_TREE (DECL_VINDEX (t));
+  /* The C frontends may create exact duplicates for DECL_ORIGINAL_TYPE
+     like for 'typedef enum foo foo'.  We have no way of avoiding to
+     merge them and dwarf2out.c cannot deal with this,
+     so fix this up by clearing DECL_ORIGINAL_TYPE in this case.  */
+  if (TREE_CODE (t) == TYPE_DECL
+      && DECL_ORIGINAL_TYPE (t) == TREE_TYPE (t))
+    DECL_ORIGINAL_TYPE (t) = NULL_TREE;
 }
 
 /* Fix up fields of a decl_non_common T.  */
index 5de35b0d7ffd8911116db69ea1a88f2a67501dd1..849dda08ae01dec10a8519a5ae02f8ac1e770678 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-13  Richard Guenther  <rguenther@suse.de>
+
+       PR lto/48354
+       * g++.dg/lto/pr48354-1_0.C: New testcase.
+
 2011-12-13  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/51519
diff --git a/gcc/testsuite/g++.dg/lto/pr48354-1_0.C b/gcc/testsuite/g++.dg/lto/pr48354-1_0.C
new file mode 100644 (file)
index 0000000..b2ae977
--- /dev/null
@@ -0,0 +1,16 @@
+// { dg-lto-do link }
+// { dg-lto-options { { -g -flto } } }
+// { dg-extra-ld-options "-r -nostdlib" }
+
+template<typename T> struct Identity { typedef T type; };
+struct S {
+    typedef void (S::*FP)();
+    FP fp;
+};
+void g();
+void f() {
+    typedef Identity<S>::type Dummy;
+    S s;
+    g();
+}
+
index 86eb9ce20b2c203b99bd96af8a0056f952aab550..919a5be306072b77b8250491577f629c4a3ca718 100644 (file)
@@ -602,6 +602,8 @@ lto_input_ts_decl_non_common_tree_pointers (struct lto_input_block *ib,
       DECL_ARGUMENTS (expr) = stream_read_tree (ib, data_in);
       DECL_RESULT (expr) = stream_read_tree (ib, data_in);
     }
+  else if (TREE_CODE (expr) == TYPE_DECL)
+    DECL_ORIGINAL_TYPE (expr) = stream_read_tree (ib, data_in);
   DECL_VINDEX (expr) = stream_read_tree (ib, data_in);
 }
 
index c46859f198957d91244e8b658350f57b1cb7da86..fea15ff1137debd51d00bfa961c0fe3c63670727 100644 (file)
@@ -508,6 +508,8 @@ write_ts_decl_non_common_tree_pointers (struct output_block *ob, tree expr,
       stream_write_tree (ob, DECL_ARGUMENTS (expr), ref_p);
       stream_write_tree (ob, DECL_RESULT (expr), ref_p);
     }
+  else if (TREE_CODE (expr) == TYPE_DECL)
+    stream_write_tree (ob, DECL_ORIGINAL_TYPE (expr), ref_p);
   stream_write_tree (ob, DECL_VINDEX (expr), ref_p);
 }
 
index cbe5542118160163fb69deacf0037eca34b46221..d62afe5c6cb81d089eb6c2e96b0932a366934042 100644 (file)
@@ -4796,6 +4796,7 @@ find_decls_types_r (tree *tp, int *ws, void *data)
        {
          fld_worklist_push (DECL_ARGUMENT_FLD (t), fld);
          fld_worklist_push (DECL_VINDEX (t), fld);
+         fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
        }
       else if (TREE_CODE (t) == FIELD_DECL)
        {