summaryrefslogtreecommitdiff
path: root/gcc/lto-cgraph.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/lto-cgraph.c')
-rw-r--r--gcc/lto-cgraph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c
index 99dbf96b7a5..8ebc74ea745 100644
--- a/gcc/lto-cgraph.c
+++ b/gcc/lto-cgraph.c
@@ -1728,7 +1728,7 @@ input_node_opt_summary (struct cgraph_node *node,
for (i = 0; i < count; i++)
{
bit = streamer_read_uhwi (ib_main);
- bitmap_set_bit (node->clone.args_to_skip, bit);
+ node->clone.args_to_skip->set_bit (bit);
}
count = streamer_read_uhwi (ib_main);
if (count)
@@ -1736,7 +1736,7 @@ input_node_opt_summary (struct cgraph_node *node,
for (i = 0; i < count; i++)
{
bit = streamer_read_uhwi (ib_main);
- bitmap_set_bit (node->clone.combined_args_to_skip, bit);
+ node->clone.combined_args_to_skip->set_bit (bit);
}
count = streamer_read_uhwi (ib_main);
for (i = 0; i < count; i++)