diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-06-21 14:06:25 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-21 14:06:25 -0600 |
commit | 4d7fc9e757f332ed8cca13aa8bd294a7824042c0 (patch) | |
tree | 3bb29550313281477026c57bde2d29dd69039745 /gcc/bitmap.h | |
parent | 824d90760c30ece02ac567e2246c214496ca8916 (diff) | |
download | gcc-4d7fc9e757f332ed8cca13aa8bd294a7824042c0.zip gcc-4d7fc9e757f332ed8cca13aa8bd294a7824042c0.tar.gz gcc-4d7fc9e757f332ed8cca13aa8bd294a7824042c0.tar.bz2 |
bitmap.h (debug_bitmap): Declare.
* bitmap.h (debug_bitmap): Declare.
* basic-block.h (init_regset_vector): New declaration.
From-SVN: r20646
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 2df6489..2941574 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -97,6 +97,8 @@ extern bitmap bitmap_initialize PROTO((bitmap)); /* Release all memory held by bitmaps. */ extern void bitmap_release_memory PROTO((void)); +extern void debug_bitmap PROTO((bitmap)); + /* Allocate a bitmap with oballoc. */ #define BITMAP_OBSTACK_ALLOC(OBSTACK) \ bitmap_initialize ((bitmap) obstack_alloc (OBSTACK, sizeof (bitmap_head))) |