diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-01-03 06:29:07 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-01-03 06:29:07 +0000 |
commit | e597f337e43e79b0427afe8bce99af767da17d53 (patch) | |
tree | ec16d6cddde6947565aa0f2400ed973bd0c8742c /gcc/basic-block.h | |
parent | 78b76d0884d435c6e05d023db71a8b00c0f044b2 (diff) | |
download | gcc-e597f337e43e79b0427afe8bce99af767da17d53.tar.gz |
basic-block.h (control_flow_graph): Change the type of x_label_to_block_map to VEC(basic_block,gc) *.
* basic-block.h (control_flow_graph): Change the type of
x_label_to_block_map to VEC(basic_block,gc) *.
* tree-cfg.c (init_empty_tree_cfg, label_to_block_fn,
set_bb_for_stmt): Adjust the uses of x_label_to_block_map.
From-SVN: r109265
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 101f48610b2..26153820e1d 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -380,7 +380,7 @@ struct control_flow_graph GTY(()) /* Mapping of labels to their associated blocks. At present only used for the tree CFG. */ - varray_type x_label_to_block_map; + VEC(basic_block,gc) *x_label_to_block_map; enum profile_status { PROFILE_ABSENT, |