Commit 90e1a349 by Mark Heffernan Committed by Mark Heffernan

2009-10-07 Mark Heffernan <meheff@google.com>

	* ipa-prop.c (ipa_print_node_params) Only print
	names of named arguments.

From-SVN: r152561
parent 70277b30
2009-10-07 Mark Heffernan <meheff@google.com>
* ipa-prop.c (ipa_print_node_params) Only print
names of named arguments.
2009-10-08 Rafael Avila de Espindola <espindola@google.com> 2009-10-08 Rafael Avila de Espindola <espindola@google.com>
* gcc.c (LINK_COMMAND_SPEC): Pass libc with -pass-through if it is * gcc.c (LINK_COMMAND_SPEC): Pass libc with -pass-through if it is
...@@ -1398,7 +1398,9 @@ ipa_print_node_params (FILE * f, struct cgraph_node *node) ...@@ -1398,7 +1398,9 @@ ipa_print_node_params (FILE * f, struct cgraph_node *node)
temp = ipa_get_param (info, i); temp = ipa_get_param (info, i);
if (TREE_CODE (temp) == PARM_DECL) if (TREE_CODE (temp) == PARM_DECL)
fprintf (f, " param %d : %s", i, fprintf (f, " param %d : %s", i,
(*lang_hooks.decl_printable_name) (temp, 2)); (DECL_NAME (temp)
? (*lang_hooks.decl_printable_name) (temp, 2)
: "(unnamed)"));
if (ipa_is_param_modified (info, i)) if (ipa_is_param_modified (info, i))
fprintf (f, " modified"); fprintf (f, " modified");
if (ipa_is_param_called (info, i)) if (ipa_is_param_called (info, i))
......
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