aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-streamer-in.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2013-12-09 19:45:47 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2013-12-09 19:45:47 +0000
commit3e248e069105af09e94110b38623cbd925c2ac22 (patch)
treeddc64e1a4ced748b197091ab6d6d16bc7090073e /gcc/lto-streamer-in.c
parent3986e69022b87429756805d4dc34fe8a15fd7456 (diff)
downloadgcc-3e248e069105af09e94110b38623cbd925c2ac22.zip
gcc-3e248e069105af09e94110b38623cbd925c2ac22.tar.gz
gcc-3e248e069105af09e94110b38623cbd925c2ac22.tar.bz2
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. From-SVN: r205818
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 9ad4f5f..91fb12d 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)