diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-14 14:31:32 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-14 14:31:32 +0000 |
commit | 43b373a2a5115268b5320b24f770a02b60353557 (patch) | |
tree | 9b7e85735089c4ca6a211da08638cf2f0a7f0793 /gcc/reload.h | |
parent | 68ba34f361d5287404bde9283b9df315f4a2c147 (diff) | |
download | gcc-43b373a2a5115268b5320b24f770a02b60353557.tar.gz |
local-alloc.c (rest_of_handle_local_alloc): Use VEC instead of VARRAY.
* local-alloc.c (rest_of_handle_local_alloc): Use VEC instead
of VARRAY.
* reload1.c (reg_equiv_memory_loc_varray): Rename to
reg_equiv_memory_loc_vec. Change the type to VEC(rtx,gc) *.
(init_reload, reload): Use VEC instead of VARRAY.
* reload.h: Update the prototype for
reg_equiv_memory_loc_varray.
From-SVN: r112955
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index a63010c630a..fbb315ef0fe 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -155,7 +155,7 @@ extern struct reload rld[MAX_RELOADS]; extern int n_reloads; #endif -extern GTY (()) struct varray_head_tag *reg_equiv_memory_loc_varray; +extern GTY (()) VEC(rtx,gc) *reg_equiv_memory_loc_vec; extern rtx *reg_equiv_constant; extern rtx *reg_equiv_invariant; extern rtx *reg_equiv_memory_loc; |