Commit 4ab71973 by Sebastian Pop Committed by Sebastian Pop

Fix comments.

2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>

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

From-SVN: r159880
parent a6766312
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> 2010-05-26 Kai Tietz <kai.tietz@onevision.com>
* builtin-types.def (BT_INT128): New primitive type. * builtin-types.def (BT_INT128): New primitive type.
......
...@@ -589,11 +589,11 @@ if_convertible_loop_p (struct loop *loop) ...@@ -589,11 +589,11 @@ if_convertible_loop_p (struct loop *loop)
edge_iterator ei; edge_iterator ei;
basic_block exit_bb = NULL; basic_block exit_bb = NULL;
/* Handle only inner most loop. */ /* Handle only innermost loop. */
if (!loop || loop->inner) if (!loop || loop->inner)
{ {
if (dump_file && (dump_flags & TDF_DETAILS)) if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, "not inner most loop\n"); fprintf (dump_file, "not innermost loop\n");
return false; return false;
} }
...@@ -631,7 +631,7 @@ if_convertible_loop_p (struct loop *loop) ...@@ -631,7 +631,7 @@ if_convertible_loop_p (struct loop *loop)
if (!ifc_bbs) if (!ifc_bbs)
{ {
if (dump_file && (dump_flags & TDF_DETAILS)) 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); free_dominance_info (CDI_POST_DOMINATORS);
return false; return false;
} }
...@@ -662,7 +662,7 @@ if_convertible_loop_p (struct loop *loop) ...@@ -662,7 +662,7 @@ if_convertible_loop_p (struct loop *loop)
} }
if (dump_file) if (dump_file)
fprintf (dump_file,"Applying if-conversion\n"); fprintf (dump_file, "Applying if-conversion\n");
free_dominance_info (CDI_POST_DOMINATORS); free_dominance_info (CDI_POST_DOMINATORS);
return true; return true;
...@@ -1020,7 +1020,7 @@ tree_if_conversion (struct loop *loop) ...@@ -1020,7 +1020,7 @@ tree_if_conversion (struct loop *loop)
if (!if_convertible_loop_p (loop)) if (!if_convertible_loop_p (loop))
{ {
if (dump_file && (dump_flags & TDF_DETAILS)) if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file,"-------------------------\n"); fprintf (dump_file, "-------------------------\n");
if (ifc_bbs) if (ifc_bbs)
{ {
free (ifc_bbs); free (ifc_bbs);
......
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