Commit 3716f233 by Jan Hubicka Committed by Jan Hubicka

re PR tree-optimization/36118 ([4.4 Regressions] inline-related regressions)


	PR tree-optimization/36118
	* passes.c (pass_init_dump_file): Fix dump header.

From-SVN: r134975
parent d0d51277
2008-05-05 Jan Hubicka <jh@suse.cz>
PR tree-optimization/36118
* passes.c (pass_init_dump_file): Fix dump header.
2008-05-05 Andrew Pinski <andrew_pinski@playstation.sony.com> 2008-05-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR middle-end/36141 PR middle-end/36141
......
...@@ -1074,7 +1074,7 @@ pass_init_dump_file (struct opt_pass *pass) ...@@ -1074,7 +1074,7 @@ pass_init_dump_file (struct opt_pass *pass)
dname = lang_hooks.decl_printable_name (current_function_decl, 2); dname = lang_hooks.decl_printable_name (current_function_decl, 2);
aname = (IDENTIFIER_POINTER aname = (IDENTIFIER_POINTER
(DECL_ASSEMBLER_NAME (current_function_decl))); (DECL_ASSEMBLER_NAME (current_function_decl)));
fprintf (dump_file, "\n;; Apply transform to function %s (%s)%s\n\n", dname, aname, fprintf (dump_file, "\n;; Function %s (%s)%s\n\n", dname, aname,
cfun->function_frequency == FUNCTION_FREQUENCY_HOT cfun->function_frequency == FUNCTION_FREQUENCY_HOT
? " (hot)" ? " (hot)"
: cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
......
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