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]

[patch] tree-ssa-dom.c: Fix formatting.


Hi,

Committed as obvious.

Kazu Hirata

2005-04-23  Kazu Hirata  <kazu@cs.umass.edu>

	* tree-ssa-dom.c: Fix formatting.

Index: tree-ssa-dom.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-dom.c,v
retrieving revision 2.106
diff -c -d -p -r2.106 tree-ssa-dom.c
*** tree-ssa-dom.c	23 Apr 2005 00:59:26 -0000	2.106
--- tree-ssa-dom.c	23 Apr 2005 02:14:17 -0000
*************** tree_ssa_dominator_optimize (void)
*** 431,447 ****
  
        free_all_edge_infos ();
  
-   {
-     block_stmt_iterator bsi;
-     basic_block bb;
-     FOR_EACH_BB (bb)
        {
! 	for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
  	  {
! 	    update_stmt_if_modified (bsi_stmt (bsi));
  	  }
        }
!   }
        /* Thread jumps, creating duplicate blocks as needed.  */
        cfg_altered |= thread_through_all_blocks ();
  
--- 431,448 ----
  
        free_all_edge_infos ();
  
        {
! 	block_stmt_iterator bsi;
! 	basic_block bb;
! 	FOR_EACH_BB (bb)
  	  {
! 	    for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
! 	      {
! 		update_stmt_if_modified (bsi_stmt (bsi));
! 	      }
  	  }
        }
! 
        /* Thread jumps, creating duplicate blocks as needed.  */
        cfg_altered |= thread_through_all_blocks ();
  
*************** record_equivalences_from_phis (basic_blo
*** 1238,1244 ****
  
        if (i == PHI_NUM_ARGS (phi))
  	bitmap_set_bit (nonzero_vars, SSA_NAME_VERSION (PHI_RESULT (phi)));
- 
      }
  }
  
--- 1239,1244 ----


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