diff options
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r-- | gcc/tree-nested.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c index 97e4787e3c7..df983e0be38 100644 --- a/gcc/tree-nested.c +++ b/gcc/tree-nested.c @@ -1083,7 +1083,7 @@ convert_nonlocal_omp_clauses (tree *pclauses, struct walk_stmt_info *wi) break; if (decl_function_context (decl) != info->context) { - bitmap_set_bit (new_suppress, DECL_UID (decl)); + new_suppress->set_bit (DECL_UID (decl)); OMP_CLAUSE_DECL (clause) = get_nonlocal_debug_decl (info, decl); if (OMP_CLAUSE_CODE (clause) != OMP_CLAUSE_PRIVATE) need_chain = true; @@ -1591,7 +1591,7 @@ convert_local_omp_clauses (tree *pclauses, struct walk_stmt_info *wi) tree field = lookup_field_for_decl (info, decl, NO_INSERT); if (field) { - bitmap_set_bit (new_suppress, DECL_UID (decl)); + new_suppress->set_bit (DECL_UID (decl)); OMP_CLAUSE_DECL (clause) = get_local_debug_decl (info, decl, field); need_frame = true; |