]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix dump output in dse_optimize_stmt
authorMartin Liska <mliska@suse.cz>
Mon, 14 Nov 2016 14:22:10 +0000 (15:22 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 14 Nov 2016 14:22:10 +0000 (14:22 +0000)
* tree-ssa-dse.c (dse_optimize_stmt): Remove quotes and extra
new line.

From-SVN: r242389

gcc/ChangeLog
gcc/tree-ssa-dse.c

index 4fea3461b765951034eaec3dcbb3a9ae400bea31..3b9c8ac9724022a6f25465bac6869fcdd15ad6fa 100644 (file)
@@ -1,3 +1,8 @@
+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>
        Richard Biener  <rguenther@suse.de>
     
index 372a0be2ffa1310dd488bfcee61ac55724450813..778b36377b722a0562b05ab5de0bb6773150002c 100644 (file)
@@ -236,9 +236,9 @@ dse_optimize_stmt (gimple_stmt_iterator *gsi)
 
              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);
-                 fprintf (dump_file, "'\n");
+                 fprintf (dump_file, "\n");
                }
 
              tree lhs = gimple_call_lhs (stmt);
@@ -292,9 +292,9 @@ dse_optimize_stmt (gimple_stmt_iterator *gsi)
 
       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);
-         fprintf (dump_file, "'\n");
+         fprintf (dump_file, "\n");
        }
 
       /* Then we need to fix the operand of the consuming stmt.  */