diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-01 00:33:05 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-01 00:33:05 +0000 |
commit | 7d0585a5a37c8aac3712340f3bf964453ebc87b1 (patch) | |
tree | cd189cb08fa13a7f1b8b3f73f4d5e9b4b6f53621 /gcc/sbitmap.h | |
parent | a4aade76261cf858be3bb15b085db257a4aa6035 (diff) | |
download | gcc-7d0585a5a37c8aac3712340f3bf964453ebc87b1.tar.gz |
* sbitmap.c (sbitmap_any_common_bits): New function.
* sbitmap.h (sbitmap_any_common_bits): Prototype.
* modulo-sched.c (sms_schedule_by_order): Use sbitmap_any_common_bits
No longer allocate/free "psp", "pss" sbitmaps.
* tree-ssa-alias.c (compute_flow_insensitive_aliasing): Similarly for
the "res" sbitmap.
(group_aliases): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91550 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r-- | gcc/sbitmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h index 779a9961129..edaa0580ebf 100644 --- a/gcc/sbitmap.h +++ b/gcc/sbitmap.h @@ -141,6 +141,7 @@ extern void sbitmap_a_or_b_and_c (sbitmap, sbitmap, sbitmap, sbitmap); extern bool sbitmap_a_or_b_and_c_cg (sbitmap, sbitmap, sbitmap, sbitmap); extern void sbitmap_a_and_b_or_c (sbitmap, sbitmap, sbitmap, sbitmap); extern bool sbitmap_a_and_b_or_c_cg (sbitmap, sbitmap, sbitmap, sbitmap); +extern bool sbitmap_any_common_bits (sbitmap, sbitmap); extern void sbitmap_a_and_b (sbitmap, sbitmap, sbitmap); extern bool sbitmap_a_and_b_cg (sbitmap, sbitmap, sbitmap); extern void sbitmap_a_or_b (sbitmap, sbitmap, sbitmap); |