diff options
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 356fc2b91a8..1db6c04fb75 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -6428,7 +6428,7 @@ gimplify_omp_for (tree *expr_p, gimple_seq *pre_p) == VAR_DECL) { t = OMP_FOR_PRE_BODY (for_stmt); - bitmap_set_bit (has_decl_expr, DECL_UID (DECL_EXPR_DECL (t))); + has_decl_expr->set_bit (DECL_UID (DECL_EXPR_DECL (t))); } else if (TREE_CODE (OMP_FOR_PRE_BODY (for_stmt)) == STATEMENT_LIST) { @@ -6439,7 +6439,7 @@ gimplify_omp_for (tree *expr_p, gimple_seq *pre_p) t = tsi_stmt (si); if (TREE_CODE (t) == DECL_EXPR && TREE_CODE (DECL_EXPR_DECL (t)) == VAR_DECL) - bitmap_set_bit (has_decl_expr, DECL_UID (DECL_EXPR_DECL (t))); + has_decl_expr->set_bit (DECL_UID (DECL_EXPR_DECL (t))); } } } |