From: Jan Hubicka Date: Fri, 28 Mar 2014 22:19:27 +0000 (+0000) Subject: cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear static chain if needed. X-Git-Tag: releases/gcc-4.9.0~236 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f91035fef4b9b43a47de29a925fb4638f322120;p=thirdparty%2Fgcc.git cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear static chain if needed. * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear static chain if needed. * g++.dg/torture/pr60659.C: New testcase. From-SVN: r208927 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d68adcf338e4..ded35eb7e72c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-03-28 Jan Hubicka + + * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear + static chain if needed. + 2014-03-28 Vladimir Makarov PR target/60697 diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 3b76aa4d4703..dcab9848307e 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -1488,6 +1488,14 @@ cgraph_redirect_edge_call_stmt_to_callee (struct cgraph_edge *e) gsi_insert_before (&gsi, set_stmt, GSI_SAME_STMT); } gimple_call_set_lhs (new_stmt, NULL_TREE); + update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt); + } + + /* If new callee has no static chain, remove it. */ + if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl)) + { + gimple_call_set_chain (new_stmt, NULL); + update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt); } cgraph_set_call_stmt_including_clones (e->caller, e->call_stmt, new_stmt, false); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fa427966cf8a..63a43c2c3adb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2014-03-28 Eric Botcazou + + * gnat.dg/opt33.adb: New testcase. + 2014-03-28 Vladimir Makarov PR target/60697 diff --git a/gcc/testsuite/gnat.dg/opt33.adb b/gcc/testsuite/gnat.dg/opt33.adb new file mode 100644 index 000000000000..e1ac27c31eec --- /dev/null +++ b/gcc/testsuite/gnat.dg/opt33.adb @@ -0,0 +1,41 @@ +-- { dg-do compile } +-- { dg-options "-O" } + +with Ada.Containers.Ordered_Sets; +with Ada.Strings.Unbounded; + +procedure Opt33 is + + type Rec is record + Name : Ada.Strings.Unbounded.Unbounded_String; + end record; + + function "<" (Left : Rec; Right : Rec) return Boolean; + + package My_Ordered_Sets is new Ada.Containers.Ordered_Sets (Rec); + + protected type Data is + procedure Do_It; + private + Set : My_Ordered_Sets.Set; + end Data; + + function "<" (Left : Rec; Right : Rec) return Boolean is + begin + return False; + end "<"; + + protected body Data is + procedure Do_It is + procedure Dummy (Position : My_Ordered_Sets.Cursor) is + begin + null; + end; + begin + Set.Iterate (Dummy'Access); + end; + end Data; + +begin + null; +end;