diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-14 02:28:46 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-14 02:28:46 +0000 |
commit | 1935e8a86d3141a0d28263330fd428be06c5ecfa (patch) | |
tree | 17efbc0a6f42d3bc2e77211baecf71bc557f15d4 /gcc/flow.c | |
parent | 062e124a4c940665698d4d596d1327c741854f83 (diff) | |
download | gcc-1935e8a86d3141a0d28263330fd428be06c5ecfa.zip gcc-1935e8a86d3141a0d28263330fd428be06c5ecfa.tar.gz gcc-1935e8a86d3141a0d28263330fd428be06c5ecfa.tar.bz2 |
basic-block.h (REG_BASIC_BLOCK): Use VEC instead of VARRAY.
* basic-block.h (REG_BASIC_BLOCK): Use VEC instead of VARRAY.
* flow.c (reg_n_info): Change the type to
VEC(reg_info_p,heap) *.
* regclass.c (allocate_reg_info, free_reg_info): Use VEC
instead of VARRAY.
* regs.h (reg_info_p): New.
(REG_N_REFS, REG_FREQ, REG_N_SETS, REG_N_DEATHS,
REG_N_CALLS_CROSSED, REG_N_THROWING_CALLS_CROSSED,
REG_LIVE_LENGTH, REGNO_FIRST_UID, REGNO_LAST_UID): Use VEC
instead of VARRAY.
From-SVN: r112942
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -182,7 +182,7 @@ int max_regno; /* Indexed by n, giving various register information */ -varray_type reg_n_info; +VEC(reg_info_p,heap) *reg_n_info; /* Regset of regs live when calls to `setjmp'-like functions happen. */ /* ??? Does this exist only for the setjmp-clobbered warning message? */ |