summaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-12 17:20:22 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-12 17:20:22 +0000
commitc8327067332a08322efd5a5f6e552da472f2b099 (patch)
tree66d8f4e05e0515b85712607dfa5be28d35e0661b /gcc/function.h
parent8c02312e4b30cbd0ff1a8d32bf567a0016e9283e (diff)
downloadgcc-c8327067332a08322efd5a5f6e552da472f2b099.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112894 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 282e04c1047..859709f609c 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;