Commit 658344f2 by Jakub Jelinek Committed by Jakub Jelinek

tree-inline.c (tree_inlinable_function_p): Remove tuples debugging hack.

	* tree-inline.c (tree_inlinable_function_p): Remove tuples
	debugging hack.

From-SVN: r141252
parent 8df67f4f
2008-10-21 Jakub Jelinek <jakub@redhat.com>
* tree-inline.c (tree_inlinable_function_p): Remove tuples
debugging hack.
* gimplify.c (gimplify_expr): Drop TREE_OVERFLOW from
INTEGER_CSTs.
......
......@@ -2316,13 +2316,7 @@ declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
bool
tree_inlinable_function_p (tree fn)
{
bool ret = inlinable_function_p (fn);
if (getenv ("TUPLES_INLINE"))
fprintf (stderr, "Function %s is %sinlinable\n", get_name (fn),
ret ? "" : "not ");
return ret;
return inlinable_function_p (fn);
}
static const char *inline_forbidden_reason;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment