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/local-alloc.c | |
parent | a4b5b2ae8d59dbaf8c855590cbd78ad3f5c47b64 (diff) | |
download | gcc-385b6e2d89aafa6135634bf661b1b559dedc8de8.zip gcc-385b6e2d89aafa6135634bf661b1b559dedc8de8.tar.gz gcc-385b6e2d89aafa6135634bf661b1b559dedc8de8.tar.bz2 |
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/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index f0492c4..1df88db 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -372,9 +372,6 @@ local_alloc () reg_offset = (char *) xmalloc (max_regno * sizeof (char)); reg_next_in_qty = (int *) xmalloc (max_regno * sizeof (int)); - /* Allocate the reg_renumber array. */ - allocate_reg_info (max_regno, FALSE, TRUE); - /* Determine which pseudo-registers can be allocated by local-alloc. In general, these are the registers used only in a single block and which only die once. |