From 6f8091fc3ed9d3cfa7a6dee7e9f9a34eb4308b2a Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Sat, 20 Sep 2014 08:22:58 +0200 Subject: ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors. * ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors. (possible_polymorphic_call_targets, dump_possible_polymorphic_call_targets, possible_polymorphic_call_target_p, possible_polymorphic_call_target_p): Simplify. (get_dynamic_type): Remove. * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Remove. (clear_speculation): Bring to ipa-deivrt.h (get_class_context): Rename to ... (ipa_polymorphic_call_context::restrict_to_inner_class): ... this one. (contains_type_p): Update. (get_dynamic_type): Rename to ... ipa_polymorphic_call_context::get_dynamic_type(): ... this one. (possible_polymorphic_call_targets): UPdate. * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Update. * ipa-prop.c (ipa_analyze_call_uses): Update. From-SVN: r215418 --- gcc/gimple-fold.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/gimple-fold.c') diff --git a/gcc/gimple-fold.c b/gcc/gimple-fold.c index 3d5e3b9..dc2c942 100644 --- a/gcc/gimple-fold.c +++ b/gcc/gimple-fold.c @@ -2563,8 +2563,8 @@ gimple_fold_call (gimple_stmt_iterator *gsi, bool inplace) { if (dump_file && virtual_method_call_p (callee) && !possible_polymorphic_call_target_p - (callee, cgraph_node::get (gimple_call_addr_fndecl - (OBJ_TYPE_REF_EXPR (callee))))) + (callee, stmt, cgraph_node::get (gimple_call_addr_fndecl + (OBJ_TYPE_REF_EXPR (callee))))) { fprintf (dump_file, "Type inheritance inconsistent devirtualization of "); -- cgit v1.1