aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-11-04 08:57:55 +0000
committerNathan Sidwell <nathan@codesourcery.com>2004-11-04 08:57:55 +0000
commit355f795433f04e5b67cd78cc68b48141b2289482 (patch)
tree381c370b2e2063e2c34f68b24e68b22e0c832bd8 /gcc/bitmap.h
parent9cfe989dac5bc732547cdd25499a865d6120ac76 (diff)
* 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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@90054 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index acabca8ab25..9f89da8b39c 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -141,8 +141,6 @@ extern void bitmap_release_memory (void);
/* A few compatibility/functions macros for compatibility with sbitmaps */
#define dump_bitmap(file, bitmap) bitmap_print (file, bitmap, "", "\n")
#define bitmap_zero(a) bitmap_clear (a)
-#define bitmap_a_or_b(a,b,c) bitmap_operation (a, b, c, BITMAP_IOR)
-#define bitmap_a_and_b(a,b,c) bitmap_operation (a, b, c, BITMAP_AND)
extern int bitmap_first_set_bit (bitmap);
extern int bitmap_last_set_bit (bitmap);