aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-09-20 11:52:22 +0000
committerJeff Law <law@gcc.gnu.org>1999-09-20 05:52:22 -0600
commitbfd384967d6e0b1148d608d2132a86d8ee871f27 (patch)
treea5343f51ad867f827443536e7582ba9aefd6b06b /gcc/bitmap.c
parentc97c62ef6843c599342c738418e14ce87e296fe1 (diff)
downloadgcc-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.c')
-rw-r--r--gcc/bitmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index b6d1dbf..3c29c44 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -552,7 +552,7 @@ bitmap_initialize (head)
/* Debugging function to print out the contents of a bitmap. */
void
-bitmap_debug_file (file, head)
+debug_bitmap_file (file, head)
FILE *file;
bitmap head;
{
@@ -602,10 +602,10 @@ void
debug_bitmap (head)
bitmap head;
{
- bitmap_debug_file (stdout, head);
+ debug_bitmap_file (stdout, head);
}
-/* Function to print out the contents of a bitmap. Unlike bitmap_debug_file,
+/* Function to print out the contents of a bitmap. Unlike debug_bitmap_file,
it does not print anything but the bits. */
void