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/integrate.h | |
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/integrate.h')
-rw-r--r-- | gcc/integrate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index 66281e8..c88e2cd 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -144,6 +144,7 @@ extern rtx has_hard_reg_initial_val PARAMS ((enum machine_mode, int)); extern void mark_hard_reg_initial_vals PARAMS ((struct function *)); /* Called from rest_of_compilation. */ extern void emit_initial_value_sets PARAMS ((void)); +extern void allocate_initial_values PARAMS ((rtx *)); /* Copy a declaration when one function is substituted inline into another. */ |