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]

minor typo in HAVE_conditional_execution code


        * flow.c (init_propagate_block_info): Fix merge error
        in HAVE_conditional_execution code.

Index: flow.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/flow.c,v
retrieving revision 1.274
diff -u -p -d -r1.274 flow.c
--- flow.c	2000/05/03 17:59:25	1.274
+++ flow.c	2000/05/05 10:52:02
@@ -3607,7 +3607,7 @@ init_propagate_block_info (bb, live, loc
 	{
 	  if (GET_CODE (XEXP (cond_true, 0)) != REG)
 	    abort ();
-	  SET_REGNO_REG_SET (pbi.reg_cond_reg, REGNO (XEXP (cond_true, 0)));
+	  SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond_true, 0)));
 
 	  /* For each such register, mark it conditionally dead.  */
 	  EXECUTE_IF_SET_IN_REG_SET
@@ -3624,7 +3624,7 @@ init_propagate_block_info (bb, live, loc
 		 cond = cond_true;
 	       rcli->condition = alloc_EXPR_LIST (0, cond, NULL_RTX);
 
-	       splay_tree_insert (pbi.reg_cond_dead, i,
+	       splay_tree_insert (pbi->reg_cond_dead, i,
 				  (splay_tree_value) rcli);
 	     });
 	}

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