aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2011-06-04 16:20:36 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2011-06-04 16:20:36 +0000
commit29413d70badb1daeb5fab4dc483ca1cad9de796e (patch)
tree08154b04ddcdd9c66f3ff68d546a4ce4f075c4d5 /gcc
parent90b4072592cf08eda903e3bb28a143105e66c73e (diff)
PR lto/48954
* lto-cgraph.c (output_node_opt_summary): Handle NULL skip args bitmaps. * g++.dg/torture/pr48954.C: New testcase. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174644 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/lto-cgraph.c26
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/torture/pr48954.C28
4 files changed, 56 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ddfb4f95a1a..5fdd07ca2cf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2011-06-04 Jan Hubicka <jh@suse.cz>
+
+ PR lto/48954
+ * lto-cgraph.c (output_node_opt_summary): Handle NULL skip args bitmaps.
+
2011-06-04 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/invoke.texi: Document -Wdelete-non-virtual-dtor.
diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c
index 1d2f92e9d1e..3b1115b53f6 100644
--- a/gcc/lto-cgraph.c
+++ b/gcc/lto-cgraph.c
@@ -1598,14 +1598,24 @@ output_node_opt_summary (struct output_block *ob,
int i;
struct cgraph_edge *e;
- lto_output_uleb128_stream (ob->main_stream,
- bitmap_count_bits (node->clone.args_to_skip));
- EXECUTE_IF_SET_IN_BITMAP (node->clone.args_to_skip, 0, index, bi)
- lto_output_uleb128_stream (ob->main_stream, index);
- lto_output_uleb128_stream (ob->main_stream,
- bitmap_count_bits (node->clone.combined_args_to_skip));
- EXECUTE_IF_SET_IN_BITMAP (node->clone.combined_args_to_skip, 0, index, bi)
- lto_output_uleb128_stream (ob->main_stream, index);
+ if (node->clone.args_to_skip)
+ {
+ lto_output_uleb128_stream (ob->main_stream,
+ bitmap_count_bits (node->clone.args_to_skip));
+ EXECUTE_IF_SET_IN_BITMAP (node->clone.args_to_skip, 0, index, bi)
+ lto_output_uleb128_stream (ob->main_stream, index);
+ }
+ else
+ lto_output_uleb128_stream (ob->main_stream, 0);
+ if (node->clone.combined_args_to_skip)
+ {
+ lto_output_uleb128_stream (ob->main_stream,
+ bitmap_count_bits (node->clone.combined_args_to_skip));
+ EXECUTE_IF_SET_IN_BITMAP (node->clone.combined_args_to_skip, 0, index, bi)
+ lto_output_uleb128_stream (ob->main_stream, index);
+ }
+ else
+ lto_output_uleb128_stream (ob->main_stream, 0);
lto_output_uleb128_stream (ob->main_stream,
VEC_length (ipa_replace_map_p, node->clone.tree_map));
FOR_EACH_VEC_ELT (ipa_replace_map_p, node->clone.tree_map, i, map)
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 30639929fb6..b88637cbddc 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2011-06-04 Jan Hubicka <jh@suse.cz>
+
+ PR lto/48954
+ * g++.dg/torture/pr48954.C: New testcase.
+
2011-06-04 Jonathan Wakely <jwakely.gcc@gmail.com>
* testsuite/g++.dg/warn/delete-non-virtual-dtor.C: New.
diff --git a/gcc/testsuite/g++.dg/torture/pr48954.C b/gcc/testsuite/g++.dg/torture/pr48954.C
new file mode 100644
index 00000000000..1af03289b24
--- /dev/null
+++ b/gcc/testsuite/g++.dg/torture/pr48954.C
@@ -0,0 +1,28 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -flto -fno-early-inlining -fkeep-inline-functions" } */
+struct A
+{
+ virtual void foo () = 0;
+};
+
+struct B : A {};
+struct C : A {};
+
+struct D: C, B
+{
+ void foo () {}
+};
+
+static inline void
+bar (B *b)
+{
+ b->foo ();
+}
+
+int
+main ()
+{
+ D d;
+ for (;;)
+ bar (&d);
+}