aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-11-04 08:57:55 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2004-11-04 08:57:55 +0000
commit67299d9127c08dcc633ea6433dc1a3234256eaf0 (patch)
tree381c370b2e2063e2c34f68b24e68b22e0c832bd8 /gcc/except.c
parent3cd8c58a83c5dcd0a2f6aaea392c378dd75bff3b (diff)
downloadgcc-67299d9127c08dcc633ea6433dc1a3234256eaf0.zip
gcc-67299d9127c08dcc633ea6433dc1a3234256eaf0.tar.gz
gcc-67299d9127c08dcc633ea6433dc1a3234256eaf0.tar.bz2
bitmap.h (bitmap_a_or_b, [...]): Remove.
* bitmap.h (bitmap_a_or_b, bitmap_a_and_b): Remove. * df.c (dataflow_set_a_op_b): Use bitmap_and, bitmap_ior, bitmap_and_into, bitmap_ior_into as appropriate. * except.c (remove_eh_handler): Likewise. * global.c (modify_bb_reg_pav, make_accurate_live_analysis): Likewise. * tree-dfa.c (mark_new_vars_to_rename): Likewise. * tree-ssa-alias.c (merge_pointed_to_info): Likewise. * tree-ssa-live.h (live_merge_and_clear): Likewise. * tree-ssa-loop-ivopts.c (find_best_candidate, try_add_cand_for): Likewise. From-SVN: r90054
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c
index 2a2e8da..c67a982 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -2293,7 +2293,7 @@ remove_eh_handler (struct eh_region *region)
if (!outer->aka)
outer->aka = BITMAP_GGC_ALLOC ();
if (region->aka)
- bitmap_a_or_b (outer->aka, outer->aka, region->aka);
+ bitmap_ior_into (outer->aka, region->aka);
bitmap_set_bit (outer->aka, region->region_number);
}