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]

obvious purge_dead_edges fix installed



Hi,
I've installed the atached patch as ovious. It has been caught during
cfg branch bootstrap after the merger.

Honza

	* cfgrtl.c (purge_dead_edges): Fix typo in previous fix.

Index: cfgrtl.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/cfgrtl.c,v
retrieving revision 1.13
diff -c -3 -p -r1.13 cfgrtl.c
*** cfgrtl.c	2001/11/22 14:30:37	1.13
--- cfgrtl.c	2001/11/26 10:36:44
*************** purge_dead_edges (bb)
*** 1841,1847 ****
  	  /* Avoid abnormal flags to leak from computed jumps turned
  	     into simplejumps.  */
   
! 	  e->flags &= EDGE_ABNORMAL;
  
  	  /* Check purposes we can have edge.  */
  	  if ((e->flags & EDGE_FALLTHRU)
--- 1841,1847 ----
  	  /* Avoid abnormal flags to leak from computed jumps turned
  	     into simplejumps.  */
   
! 	  e->flags &= ~EDGE_ABNORMAL;
  
  	  /* Check purposes we can have edge.  */
  	  if ((e->flags & EDGE_FALLTHRU)


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