diff options
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 4d0f320..5c8e43e 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -670,7 +670,7 @@ eliminate_phi (edge e, elim_graph g) { int part; - sbitmap_zero (g->visited); + bitmap_clear (g->visited); VEC_truncate (int, g->stack, 0); FOR_EACH_VEC_ELT (int, g->nodes, x, part) @@ -679,7 +679,7 @@ eliminate_phi (edge e, elim_graph g) elim_forward (g, part); } - sbitmap_zero (g->visited); + bitmap_clear (g->visited); while (VEC_length (int, g->stack) > 0) { x = VEC_pop (int, g->stack); |