Commit 5211d65a by Kazu Hirata Committed by Kazu Hirata

* cselib.c (reg_values, reg_values_size): Make them static.

From-SVN: r95987
parent 992ff9ab
2005-03-05 Kazu Hirata <kazu@cs.umass.edu>
* cselib.c (reg_values, reg_values_size): Make them static.
2005-03-06 Zdenek Dvorak <dvorakz@suse.cz> 2005-03-06 Zdenek Dvorak <dvorakz@suse.cz>
* cse.c (find_best_addr): Use canon_for_address. * cse.c (find_best_addr): Use canon_for_address.
......
...@@ -101,8 +101,8 @@ static int n_useless_values; ...@@ -101,8 +101,8 @@ static int n_useless_values;
which the register was set; if the mode is unknown or the value is which the register was set; if the mode is unknown or the value is
no longer valid in that mode, ELT will be NULL for the first no longer valid in that mode, ELT will be NULL for the first
element. */ element. */
struct elt_list **reg_values; static struct elt_list **reg_values;
unsigned int reg_values_size; static unsigned int reg_values_size;
#define REG_VALUES(i) reg_values[i] #define REG_VALUES(i) reg_values[i]
/* The largest number of hard regs used by any entry added to the /* The largest number of hard regs used by any entry added to the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment