This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix minor typo in tree-if-conv.c


It looks like the following is a mistake:

Index: tree-if-conv.c
===================================================================
--- tree-if-conv.c (revision 122404)
+++ tree-if-conv.c (working copy)
@@ -356,7 +356,7 @@
   if (movement_possibility (m_expr) == MOVE_IMPOSSIBLE)
     {
       if (dump_file && (dump_flags & TDF_DETAILS))
-     fprintf (dump_file, "stmt is movable. Don't take risk\n");
+     fprintf (dump_file, "stmt is not movable. Don't take risk\n");
       return false;
     }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]