From cbb4e4ca11e22ae88ed3ef91566efc379636fc03 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Thu, 18 Jan 2018 17:26:54 +0100 Subject: [PATCH] re PR ipa/82256 (clones created by create_version_clone_with_body are not observable to insertion hooks) PR ipa/82256 patch by PaX Team * cgraphclones.c (cgraph_node::create_version_clone_with_body): Fix call of call_cgraph_insertion_hooks. From-SVN: r256853 --- gcc/ChangeLog | 7 +++++++ gcc/cgraphclones.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d1679f4320b..8f37ed18192 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2018-01-18 Jan Hubicka + + PR ipa/82256 + patch by PaX Team + * cgraphclones.c (cgraph_node::create_version_clone_with_body): + Fix call of call_cgraph_insertion_hooks. + 2018-01-18 Martin Sebor * doc/invoke.texi (-Wclass-memaccess): Tweak text. diff --git a/gcc/cgraphclones.c b/gcc/cgraphclones.c index 4360feaae60..6e84a31c1a5 100644 --- a/gcc/cgraphclones.c +++ b/gcc/cgraphclones.c @@ -1007,7 +1007,7 @@ cgraph_node::create_version_clone_with_body /* Update the call_expr on the edges to call the new version node. */ update_call_expr (new_version_node); - symtab->call_cgraph_insertion_hooks (this); + symtab->call_cgraph_insertion_hooks (new_version_node); return new_version_node; } -- 2.30.2