diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-09-20 11:52:22 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-09-20 05:52:22 -0600 |
commit | bfd384967d6e0b1148d608d2132a86d8ee871f27 (patch) | |
tree | a5343f51ad867f827443536e7582ba9aefd6b06b /gcc/bitmap.h | |
parent | c97c62ef6843c599342c738418e14ce87e296fe1 (diff) | |
download | gcc-bfd384967d6e0b1148d608d2132a86d8ee871f27.zip gcc-bfd384967d6e0b1148d608d2132a86d8ee871f27.tar.gz gcc-bfd384967d6e0b1148d608d2132a86d8ee871f27.tar.bz2 |
bitmap.c (debug_bitmap_file): Renmaed from bitmap_debug_file.
* bitmap.c (debug_bitmap_file): Renmaed from bitmap_debug_file.
Callers and prototype changed.
* bitmap.h: Fix debug_bitmap and debug_bitmap_file prototypes.
From-SVN: r29518
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 4ff0bf4..6f05bcf 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -85,8 +85,8 @@ extern void bitmap_set_bit PROTO((bitmap, int)); extern int bitmap_bit_p PROTO((bitmap, int)); /* Debug functions to print a bitmap linked list. */ -extern void bitmap_debug PROTO((bitmap)); -extern void bitmap_debug_file PROTO((FILE *, bitmap)); +extern void debug_bitmap PROTO((bitmap)); +extern void debug_bitmap_file PROTO((FILE *, bitmap)); /* Print a bitmap */ extern void bitmap_print PROTO((FILE *, bitmap, const char *, const char *)); |