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]

fix for flow.c prototype problem


The current (as of a few minutes ago) source won't build because of a
bad forward declaration in flow.c.  Doubtless someone will have fixed
it anyhow before they see this...

1998-10-11  Dave Love  <d.love@dl.ac.uk>

	* flow.c: Fix find_basic_blocks_1 prototype.

Index: flow.c
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/flow.c,v
retrieving revision 1.68
diff -u -p -c -r1.68 flow.c
diff: conflicting specifications of output style
*** flow.c	1998/10/10 23:18:28	1.68
--- flow.c	1998/10/11 15:35:59
*************** static rtx last_mem_set;
*** 253,259 ****
  static HARD_REG_SET elim_reg_set;
  
  /* Forward declarations */
! static void find_basic_blocks_1		PROTO((rtx, rtx, int));
  static void make_edges			PROTO((int));
  static void mark_label_ref		PROTO((rtx, rtx, int));
  static int delete_unreachable_blocks	PROTO((void));
--- 253,259 ----
  static HARD_REG_SET elim_reg_set;
  
  /* Forward declarations */
! static void find_basic_blocks_1		PROTO((rtx, rtx));
  static void make_edges			PROTO((int));
  static void mark_label_ref		PROTO((rtx, rtx, int));
  static int delete_unreachable_blocks	PROTO((void));


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