+2009-10-01 Martin Jambor <mjambor@suse.cz>
+
+ PR middle-end/12392
+ * tree-sra.c (convert_callers): Do not call
+ compute_inline_parameters on one caller more than once.
+
2009-10-01 Nick Clifton <nickc@redhat.com>
* config/vax/netbsd-elf.h (NETBSD_CC1_AND_CC1PLUS_SPEC): Define as
tree old_cur_fndecl = current_function_decl;
struct cgraph_edge *cs;
basic_block this_block;
+ bitmap recomputed_callers = BITMAP_ALLOC (NULL);
for (cs = node->callers; cs; cs = cs->next_caller)
{
push_cfun (DECL_STRUCT_FUNCTION (cs->caller->decl));
if (dump_file)
- fprintf (dump_file, "Adjusting call %s -> %s\n",
+ fprintf (dump_file, "Adjusting call (%i -> %i) %s -> %s\n",
+ cs->caller->uid, cs->callee->uid,
cgraph_node_name (cs->caller),
cgraph_node_name (cs->callee));
ipa_modify_call_arguments (cs, cs->call_stmt, adjustments);
- compute_inline_parameters (cs->caller);
pop_cfun ();
}
+
+ for (cs = node->callers; cs; cs = cs->next_caller)
+ if (!bitmap_bit_p (recomputed_callers, cs->caller->uid))
+ {
+ compute_inline_parameters (cs->caller);
+ bitmap_set_bit (recomputed_callers, cs->caller->uid);
+ }
+ BITMAP_FREE (recomputed_callers);
+
current_function_decl = old_cur_fndecl;
FOR_EACH_BB (this_block)
{