+2012-06-26 Richard Guenther <rguenther@suse.de>
+
+ Revert
+ 2012-06-21 Richard Guenther <rguenther@suse.de>
+
+ * tree-inline.c (estimate_num_insns): Estimate call cost for
+ tailcalls properly.
+
2012-06-26 Steven Bosscher <steven@gcc.gnu.org>
PR other/33190
}
cost = node ? weights->call_cost : weights->indirect_call_cost;
- if (!gimple_call_tail_p (stmt))
+ if (gimple_call_lhs (stmt))
+ cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
+ for (i = 0; i < gimple_call_num_args (stmt); i++)
{
- if (gimple_call_lhs (stmt))
- cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
- for (i = 0; i < gimple_call_num_args (stmt); i++)
- {
- tree arg = gimple_call_arg (stmt, i);
- cost += estimate_move_cost (TREE_TYPE (arg));
- }
+ tree arg = gimple_call_arg (stmt, i);
+ cost += estimate_move_cost (TREE_TYPE (arg));
}
break;
}