]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix comments.
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 May 2010 16:45:47 +0000 (16:45 +0000)
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 May 2010 16:45:47 +0000 (16:45 +0000)
2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>

* tree-if-conv.c: Update copyright years.  Fix comments.
Fix indentation.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159880 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-if-conv.c

index d8574a6fbf4d0487e8c07f07b7db88d02e9a25fd..83760aecba4f327ea85eb7f00c64090e8c043876 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
+
+       * tree-if-conv.c: Update copyright years.  Fix comments.
+       Fix indentation.
+
 2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
 
        * builtin-types.def (BT_INT128): New primitive type.
index adbdfd8fcc26aff913c8f6a5e33f2c33aa6f0b13..127b5e36b59571a95716ce0c7b3d706091340e19 100644 (file)
@@ -589,11 +589,11 @@ if_convertible_loop_p (struct loop *loop)
   edge_iterator ei;
   basic_block exit_bb = NULL;
 
-  /* Handle only inner most loop.  */
+  /* Handle only innermost loop.  */
   if (!loop || loop->inner)
     {
       if (dump_file && (dump_flags & TDF_DETAILS))
-       fprintf (dump_file, "not inner most loop\n");
+       fprintf (dump_file, "not innermost loop\n");
       return false;
     }
 
@@ -631,7 +631,7 @@ if_convertible_loop_p (struct loop *loop)
   if (!ifc_bbs)
     {
       if (dump_file && (dump_flags & TDF_DETAILS))
-       fprintf (dump_file,"Irreducible loop\n");
+       fprintf (dump_file, "Irreducible loop\n");
       free_dominance_info (CDI_POST_DOMINATORS);
       return false;
     }
@@ -662,7 +662,7 @@ if_convertible_loop_p (struct loop *loop)
     }
 
   if (dump_file)
-    fprintf (dump_file,"Applying if-conversion\n");
+    fprintf (dump_file, "Applying if-conversion\n");
 
   free_dominance_info (CDI_POST_DOMINATORS);
   return true;
@@ -1020,7 +1020,7 @@ tree_if_conversion (struct loop *loop)
   if (!if_convertible_loop_p (loop))
     {
       if (dump_file && (dump_flags & TDF_DETAILS))
-       fprintf (dump_file,"-------------------------\n");
+       fprintf (dump_file, "-------------------------\n");
       if (ifc_bbs)
        {
          free (ifc_bbs);