aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-04-12 17:20:22 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-04-12 17:20:22 +0000
commit597d6703b871bde0af2768fb0a3d917da082e348 (patch)
tree66d8f4e05e0515b85712607dfa5be28d35e0661b /gcc/tree-inline.c
parentdacb336e10d3679e72c7a6e3d6a3ff9601234e5e (diff)
downloadgcc-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/tree-inline.c')
-rw-r--r--gcc/tree-inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 3e35842..a6ee6ed 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -893,7 +893,7 @@ copy_cfg_body (copy_body_data * id, gcov_type count, int frequency,
*new_cfun = *DECL_STRUCT_FUNCTION (callee_fndecl);
new_cfun->cfg = NULL;
new_cfun->decl = new_fndecl = copy_node (callee_fndecl);
- new_cfun->ib_boundaries_block = (varray_type) 0;
+ new_cfun->ib_boundaries_block = NULL;
DECL_STRUCT_FUNCTION (new_fndecl) = new_cfun;
push_cfun (new_cfun);
init_empty_tree_cfg ();