diff options
Diffstat (limited to 'gcc/loop-iv.c')
-rw-r--r-- | gcc/loop-iv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop-iv.c b/gcc/loop-iv.c index 15e319ac5ac..4df8b0983f0 100644 --- a/gcc/loop-iv.c +++ b/gcc/loop-iv.c @@ -297,7 +297,7 @@ iv_analysis_loop_init (struct loop *loop) for (i = 0; i < loop->num_nodes; i++) { bb = body[i]; - bitmap_set_bit (&blocks, bb->index); + blocks.set_bit (bb->index); } /* Get rid of the ud chains before processing the rescans. Then add the problem back. */ |