Commit ebd9509a by Martin Liska Committed by Martin Liska

Fix dump output in dse_optimize_stmt

	* tree-ssa-dse.c (dse_optimize_stmt): Remove quotes and extra
	new line.

From-SVN: r242389
parent bc08ecba
2016-11-14 Martin Liska <mliska@suse.cz>
* tree-ssa-dse.c (dse_optimize_stmt): Remove quotes and extra
new line.
2016-11-14 Prasad Ghangal <prasad.ghangal@gmail.com> 2016-11-14 Prasad Ghangal <prasad.ghangal@gmail.com>
Richard Biener <rguenther@suse.de> Richard Biener <rguenther@suse.de>
...@@ -236,9 +236,9 @@ dse_optimize_stmt (gimple_stmt_iterator *gsi) ...@@ -236,9 +236,9 @@ dse_optimize_stmt (gimple_stmt_iterator *gsi)
if (dump_file && (dump_flags & TDF_DETAILS)) if (dump_file && (dump_flags & TDF_DETAILS))
{ {
fprintf (dump_file, " Deleted dead call '"); fprintf (dump_file, " Deleted dead call: ");
print_gimple_stmt (dump_file, gsi_stmt (*gsi), dump_flags, 0); print_gimple_stmt (dump_file, gsi_stmt (*gsi), dump_flags, 0);
fprintf (dump_file, "'\n"); fprintf (dump_file, "\n");
} }
tree lhs = gimple_call_lhs (stmt); tree lhs = gimple_call_lhs (stmt);
...@@ -292,9 +292,9 @@ dse_optimize_stmt (gimple_stmt_iterator *gsi) ...@@ -292,9 +292,9 @@ dse_optimize_stmt (gimple_stmt_iterator *gsi)
if (dump_file && (dump_flags & TDF_DETAILS)) if (dump_file && (dump_flags & TDF_DETAILS))
{ {
fprintf (dump_file, " Deleted dead store '"); fprintf (dump_file, " Deleted dead store: ");
print_gimple_stmt (dump_file, gsi_stmt (*gsi), dump_flags, 0); print_gimple_stmt (dump_file, gsi_stmt (*gsi), dump_flags, 0);
fprintf (dump_file, "'\n"); fprintf (dump_file, "\n");
} }
/* Then we need to fix the operand of the consuming stmt. */ /* Then we need to fix the operand of the consuming stmt. */
......
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