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]

Small cse.c fix committed


This patch deletes two prototypes for functions that moved to
simplify-rtx.c.

Bernd

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/egcs/gcc/ChangeLog,v
retrieving revision 1.4886
diff -c -p -r1.4886 ChangeLog
*** ChangeLog	1999/11/02 15:48:26	1.4886
--- ChangeLog	1999/11/02 15:58:01
***************
*** 1,3 ****
--- 1,7 ----
+ Tue Nov  2 16:57:22 1999  Bernd Schmidt  <bernds@cygnus.co.uk>
+ 
+ 	* cse.c (simplify_plus_minus, check_fold_const): Delete declarations.
+ 
  Tue Nov  2 09:43:00 1999   Catherine Moore  <clm@cygnus.com>
  
          * Makefile.in (genattrtab): Don't use (HOST_RTLANAL).
Index: cse.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/cse.c,v
retrieving revision 1.106
diff -c -p -r1.106 cse.c
*** cse.c	1999/11/01 02:19:25	1.106
--- cse.c	1999/11/02 15:58:10
*************** static void find_best_addr	PROTO((rtx, r
*** 687,694 ****
  static enum rtx_code find_comparison_args PROTO((enum rtx_code, rtx *, rtx *,
  						 enum machine_mode *,
  						 enum machine_mode *));
- static rtx simplify_plus_minus	PROTO((enum rtx_code, enum machine_mode,
- 				       rtx, rtx));
  static rtx fold_rtx		PROTO((rtx, rtx));
  static rtx equiv_constant	PROTO((rtx));
  static void record_jump_equiv	PROTO((rtx, int));
--- 687,692 ----
*************** static void cse_set_around_loop	PROTO((r
*** 708,714 ****
  static rtx cse_basic_block	PROTO((rtx, rtx, struct branch_path *, int));
  static void count_reg_usage	PROTO((rtx, int *, rtx, int));
  extern void dump_class          PROTO((struct table_elt*));
- static void check_fold_consts	PROTO((PTR));
  static struct cse_reg_info* get_cse_reg_info PROTO((int));
  static unsigned int hash_cse_reg_info PROTO((hash_table_entry_t));
  static int cse_reg_info_equal_p	PROTO((hash_table_entry_t,
--- 706,711 ----


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