diff options
Diffstat (limited to 'gcc/lra-lives.c')
-rw-r--r-- | gcc/lra-lives.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lra-lives.c b/gcc/lra-lives.c index f03e8ef9b7e..64643459af0 100644 --- a/gcc/lra-lives.c +++ b/gcc/lra-lives.c @@ -789,7 +789,7 @@ remove_some_program_points_and_update_live_ranges (void) map = XCNEWVEC (int, lra_live_max_point); n = -1; prev_born_p = prev_dead_p = false; - EXECUTE_IF_SET_IN_SBITMAP (born_or_dead, 0, i, sbi) + EXECUTE_IF_SET_IN_BITMAP (born_or_dead, 0, i, sbi) { born_p = bitmap_bit_p (born, i); dead_p = bitmap_bit_p (dead, i); |