diff options
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 9c8eea753e4..9156ee8756d 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -3734,7 +3734,7 @@ break_superblocks (void) if (bb->flags & BB_SUPERBLOCK) { bb->flags &= ~BB_SUPERBLOCK; - SET_BIT (superblocks, bb->index); + bitmap_set_bit (superblocks, bb->index); need = true; } @@ -4255,7 +4255,7 @@ rtl_flow_call_edges_add (sbitmap blocks) if (! blocks) check_last_block = true; else - check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index); + check_last_block = bitmap_bit_p (blocks, EXIT_BLOCK_PTR->prev_bb->index); /* In the last basic block, before epilogue generation, there will be a fallthru edge to EXIT. Special care is required if the last insn @@ -4305,7 +4305,7 @@ rtl_flow_call_edges_add (sbitmap blocks) if (!bb) continue; - if (blocks && !TEST_BIT (blocks, i)) + if (blocks && !bitmap_bit_p (blocks, i)) continue; for (insn = BB_END (bb); ; insn = prev_insn) |