aboutsummaryrefslogtreecommitdiff
path: root/gcc/sbitmap.h
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2004-11-30 17:33:05 -0700
committerJeff Law <law@gcc.gnu.org>2004-11-30 17:33:05 -0700
commit874437bca02e96899291027cfa3d6e4d4e08414f (patch)
treecd189cb08fa13a7f1b8b3f73f4d5e9b4b6f53621 /gcc/sbitmap.h
parent29b0a291d41c929c8b86f40da25071e09beeb7a6 (diff)
downloadgcc-874437bca02e96899291027cfa3d6e4d4e08414f.zip
gcc-874437bca02e96899291027cfa3d6e4d4e08414f.tar.gz
gcc-874437bca02e96899291027cfa3d6e4d4e08414f.tar.bz2
sbitmap.c (sbitmap_any_common_bits): New function.
* 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. From-SVN: r91550
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r--gcc/sbitmap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h
index 779a996..edaa058 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);