aboutsummaryrefslogtreecommitdiff
path: root/gcc/cse.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@wolery.cumb.org>1999-12-23 17:54:00 +0000
committerZack Weinberg <zack@gcc.gnu.org>1999-12-23 17:54:00 +0000
commit7e28988a047a00cd9ee16f9a0d39f8d1635ff985 (patch)
treee1c8ef29433c8abf1ade3712683316ec7f94306c /gcc/cse.c
parent22557376688c96ff50ef98351b69b4a66020d7fd (diff)
downloadgcc-7e28988a047a00cd9ee16f9a0d39f8d1635ff985.zip
gcc-7e28988a047a00cd9ee16f9a0d39f8d1635ff985.tar.gz
gcc-7e28988a047a00cd9ee16f9a0d39f8d1635ff985.tar.bz2
Makefile.in (ggc-simple.c, ggc-page.c): Don't depend on hash.h.
1999-12-23 Zack Weinberg <zack@wolery.cumb.org> * Makefile.in (ggc-simple.c, ggc-page.c): Don't depend on hash.h. (cse.c): Don't depend on hashtab.h. * cse.c: Don't include hashtab.h. (hash_cse_reg_info, cse_reg_info_equal_p): Delete prototypes of dead functions. * ggc-simple.c: Don't include hash.h. From-SVN: r31080
Diffstat (limited to 'gcc/cse.c')
-rw-r--r--gcc/cse.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index c27c8fd..741bdcb 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -36,7 +36,6 @@ Boston, MA 02111-1307, USA. */
#include "expr.h"
#include "toplev.h"
#include "output.h"
-#include "hashtab.h"
#include "ggc.h"
/* The basic idea of common subexpression elimination is to go
@@ -697,9 +696,6 @@ 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 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,
- hash_table_entry_t));
static void flush_hash_table PROTO((void));