summaryrefslogtreecommitdiff
path: root/gcc/tree-nested.c
diff options
context:
space:
mode:
authorTrevor Saunders <tsaunders@mozilla.com>2013-11-18 22:36:34 -0500
committerTrevor Saunders <tsaunders@mozilla.com>2013-11-18 22:36:34 -0500
commit0c4d1ac58074fda4b63b62d4774ef6d2822c59fc (patch)
tree4441a04bc55e8f43bcf585457ea30f56c15ce837 /gcc/tree-nested.c
parent994ab8bb4b8a0ba60ddb3a669f510dd56d7ccae4 (diff)
downloadgcc-tbsaunde/bitmap2.tar.gz
move some bitmap functions to methodstbsaunde/bitmap2
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r--gcc/tree-nested.c4
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;