diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-12 17:20:22 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-12 17:20:22 +0000 |
commit | 597d6703b871bde0af2768fb0a3d917da082e348 (patch) | |
tree | 66d8f4e05e0515b85712607dfa5be28d35e0661b /gcc/function.h | |
parent | dacb336e10d3679e72c7a6e3d6a3ff9601234e5e (diff) | |
download | gcc-597d6703b871bde0af2768fb0a3d917da082e348.zip gcc-597d6703b871bde0af2768fb0a3d917da082e348.tar.gz gcc-597d6703b871bde0af2768fb0a3d917da082e348.tar.bz2 |
Makefile.in (GTFILES): Move functions.h after tree.h.
* Makefile.in (GTFILES): Move functions.h after tree.h.
* function.c (reset_block_changes, record_block_change,
check_block_change, free_block_changes): Use VEC instead of
VARRAY.
* function.h (function): Change the type of
ib_boundaries_block to VEC(tree,gc) *.
* tree-inline.c (copy_cfg_body): Initialize
ib_boundaries_block to NULL instead of (varray_type) 0.
From-SVN: r112894
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h index 282e04c..859709f 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -346,7 +346,7 @@ struct function GTY(()) location_t function_end_locus; /* Array mapping insn uids to blocks. */ - struct varray_head_tag *ib_boundaries_block; + VEC(tree,gc) *ib_boundaries_block; /* The variables unexpanded so far. */ tree unexpanded_var_list; |