diff options
author | David Malcolm <dmalcolm@redhat.com> | 2013-12-09 19:35:13 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2013-12-09 19:35:13 +0000 |
commit | 3986e69022b87429756805d4dc34fe8a15fd7456 (patch) | |
tree | 657f046dd2370e1e49364d9cfafca1d1096bf9a8 /gcc/lto-streamer-in.c | |
parent | bbd7925926feee79874da1c763e4af2b2de62244 (diff) | |
download | gcc-3986e69022b87429756805d4dc34fe8a15fd7456.zip gcc-3986e69022b87429756805d4dc34fe8a15fd7456.tar.gz gcc-3986e69022b87429756805d4dc34fe8a15fd7456.tar.bz2 |
Rename last_basic_block_for_function to last_basic_block_for_fn.
gcc/
* basic-block.h (last_basic_block_for_function): Rename to...
(last_basic_block_for_fn): ...this.
* ipa-utils.c (ipa_merge_profiles): Update for renaming of
last_basic_block_for_function to last_basic_block_for_fn.
* lto-streamer-in.c (input_cfg): Likewise.
* lto-streamer-out.c (output_cfg): Likewise.
* tree-cfg.c (init_empty_tree_cfg_for_function): Likewise.
* tree-sra.c (propagate_dereference_distances, ipa_early_sra):
Likewise.
From-SVN: r205817
Diffstat (limited to 'gcc/lto-streamer-in.c')
-rw-r--r-- | gcc/lto-streamer-in.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c index 5a604d3..9ad4f5f 100644 --- a/gcc/lto-streamer-in.c +++ b/gcc/lto-streamer-in.c @@ -637,7 +637,7 @@ input_cfg (struct lto_input_block *ib, struct data_in *data_in, bb_count = streamer_read_uhwi (ib); - last_basic_block_for_function (fn) = bb_count; + last_basic_block_for_fn (fn) = bb_count; if (bb_count > basic_block_info_for_fn (fn)->length ()) vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count); |