diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-23 19:13:50 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-23 19:13:50 +0000 |
commit | 0b8be2906fb89957f5ad3a86999353f9dc787ffc (patch) | |
tree | ae03b90aad93c844a295ceb15b9ee18ea6af979b /gcc/cse.c | |
parent | d09d65a4dd38d17c063dbea397adf5cf7690c64d (diff) | |
download | gcc-0b8be2906fb89957f5ad3a86999353f9dc787ffc.tar.gz |
* cse.c (max_reg, max_insn_uid): Remove.
(cse_main): Don't access max_reg or max_insn_uid.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94119 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/cse.c b/gcc/cse.c index 9e3e4965a38..98854c9ba92 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -202,15 +202,6 @@ Related expressions: so that it is possible to find out if there exists any register equivalent to an expression related to a given expression. */ -/* One plus largest register number used in this function. */ - -static int max_reg; - -/* One plus largest instruction UID used in this function at time of - cse_main call. */ - -static int max_insn_uid; - /* Length of qty_table vector. We know in advance we will not need a quantity number this big. */ @@ -6726,10 +6717,6 @@ cse_main (rtx f, int nregs, FILE *file) init_recog (); init_alias_analysis (); - max_reg = nregs; - - max_insn_uid = get_max_uid (); - reg_eqv_table = xmalloc (nregs * sizeof (struct reg_eqv_elem)); /* Reset the counter indicating how many elements have been made |