diff options
author | J"orn Rennecke <amylaar@redhat.com> | 2001-09-21 00:45:30 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2001-09-21 01:45:30 +0100 |
commit | 385b6e2d89aafa6135634bf661b1b559dedc8de8 (patch) | |
tree | 17d728b05bed014f8620fd0df4576c3c1a968f86 /gcc/reload1.c | |
parent | a4b5b2ae8d59dbaf8c855590cbd78ad3f5c47b64 (diff) | |
download | gcc-385b6e2d89aafa6135634bf661b1b559dedc8de8.tar.gz |
integrate.c (allocate_initial_values): New function.
* integrate.c (allocate_initial_values): New function.
* integrate.h (allocate_initial_values): Declare.
* local-alloc.c (local_alloc): Move call to allocate_reg_info from
here...
* reload1.c (reload): And initialization of reg_equiv_memory_loc
from here...
* toplev.c (rest_of_compilation): To here.
Call allocate_initial_values.
* tm.texi: add description for ALLOCATE_INITIAL_VALUE.
From-SVN: r45716
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 32303a56262..11010e21738 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -733,7 +733,6 @@ reload (first, global) be substituted eventually by altering the REG-rtx's. */ reg_equiv_constant = (rtx *) xcalloc (max_regno, sizeof (rtx)); - reg_equiv_memory_loc = (rtx *) xcalloc (max_regno, sizeof (rtx)); reg_equiv_mem = (rtx *) xcalloc (max_regno, sizeof (rtx)); reg_equiv_init = (rtx *) xcalloc (max_regno, sizeof (rtx)); reg_equiv_address = (rtx *) xcalloc (max_regno, sizeof (rtx)); |