This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
fix for flow.c prototype problem
- To: egcs-bugs at cygnus dot com
- Subject: fix for flow.c prototype problem
- From: Dave Love <d dot love at dl dot ac dot uk>
- Date: 11 Oct 1998 16:40:31 +0100
- Cc: egcs-patches at cygnus dot com
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));