summaryrefslogtreecommitdiff
path: root/gcc/lto-streamer-in.c
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-09 19:45:47 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-09 19:45:47 +0000
commitdbd64d4793ff6c2e6ae82d4571bc8daef3670d19 (patch)
treeddc64e1a4ced748b197091ab6d6d16bc7090073e /gcc/lto-streamer-in.c
parent776b0663d64c7d887237e99b81d22ee5f4831e0d (diff)
downloadgcc-dbd64d4793ff6c2e6ae82d4571bc8daef3670d19.tar.gz
Rename label_to_block_map_for_function to label_to_block_map_for_fn.
gcc/ * basic-block.h (label_to_block_map_for_function): Rename to... (label_to_block_map_for_fn): ...this. * lto-streamer-in.c (input_cfg): Update for renaming. * tree-cfg.c (init_empty_tree_cfg_for_function): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205818 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-streamer-in.c')
-rw-r--r--gcc/lto-streamer-in.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c
index 9ad4f5ff87f..91fb12d1183 100644
--- a/gcc/lto-streamer-in.c
+++ b/gcc/lto-streamer-in.c
@@ -641,8 +641,8 @@ input_cfg (struct lto_input_block *ib, struct data_in *data_in,
if (bb_count > basic_block_info_for_fn (fn)->length ())
vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count);
- if (bb_count > label_to_block_map_for_function (fn)->length ())
- vec_safe_grow_cleared (label_to_block_map_for_function (fn), bb_count);
+ if (bb_count > label_to_block_map_for_fn (fn)->length ())
+ vec_safe_grow_cleared (label_to_block_map_for_fn (fn), bb_count);
index = streamer_read_hwi (ib);
while (index != -1)