diff options
author | Trevor Saunders <tsaunders@mozilla.com> | 2013-11-18 22:36:34 -0500 |
---|---|---|
committer | Trevor Saunders <tsaunders@mozilla.com> | 2013-11-18 22:36:34 -0500 |
commit | 0c4d1ac58074fda4b63b62d4774ef6d2822c59fc (patch) | |
tree | 4441a04bc55e8f43bcf585457ea30f56c15ce837 /gcc/gimplify.c | |
parent | 994ab8bb4b8a0ba60ddb3a669f510dd56d7ccae4 (diff) | |
download | gcc-tbsaunde/bitmap2.tar.gz |
move some bitmap functions to methodstbsaunde/bitmap2
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))); } } } |