diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-11 23:27:40 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-11 23:27:40 +0000 |
commit | 6bcfea9e23374b2596b95dee819a021c8ef67252 (patch) | |
tree | d38469d11e239e057646171b9f1320f4dfe9a82a /gcc/bitmap.h | |
parent | 5d0e87b7f7afa132927bdf223966b0c1669bbd3a (diff) | |
download | gcc-6bcfea9e23374b2596b95dee819a021c8ef67252.tar.gz |
* alias.c: PROTO -> PARAMS.
* basic-block.h: Likewise.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* builtins.c: Likewise.
* c-aux-info.c: Likewise.
* caller-save.c: Likewise.
* calls.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31338 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 99f45492e22..fc10bd4cfe8 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -1,5 +1,5 @@ /* Functions to support general ended bitmaps. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of GNU CC. @@ -67,44 +67,44 @@ extern bitmap_element *bitmap_free; /* Freelist of bitmap elements */ extern bitmap_element bitmap_zero; /* Zero bitmap element */ /* Clear a bitmap by freeing up the linked list. */ -extern void bitmap_clear PROTO((bitmap)); +extern void bitmap_clear PARAMS ((bitmap)); /* Copy a bitmap to another bitmap. */ -extern void bitmap_copy PROTO((bitmap, bitmap)); +extern void bitmap_copy PARAMS ((bitmap, bitmap)); /* True if two bitmaps are identical. */ -extern int bitmap_equal_p PROTO((bitmap, bitmap)); +extern int bitmap_equal_p PARAMS ((bitmap, bitmap)); /* Perform an operation on two bitmaps, yielding a third. */ -extern int bitmap_operation PROTO((bitmap, bitmap, bitmap, enum bitmap_bits)); +extern int bitmap_operation PARAMS ((bitmap, bitmap, bitmap, enum bitmap_bits)); /* `or' into one bitmap the `and' of a second bitmap witih the complement of a third. */ -extern void bitmap_ior_and_compl PROTO((bitmap, bitmap, bitmap)); +extern void bitmap_ior_and_compl PARAMS ((bitmap, bitmap, bitmap)); /* Clear a single register in a register set. */ -extern void bitmap_clear_bit PROTO((bitmap, int)); +extern void bitmap_clear_bit PARAMS ((bitmap, int)); /* Set a single register in a register set. */ -extern void bitmap_set_bit PROTO((bitmap, int)); +extern void bitmap_set_bit PARAMS ((bitmap, int)); /* Return true if a register is set in a register set. */ -extern int bitmap_bit_p PROTO((bitmap, int)); +extern int bitmap_bit_p PARAMS ((bitmap, int)); /* Debug functions to print a bitmap linked list. */ -extern void debug_bitmap PROTO((bitmap)); -extern void debug_bitmap_file PROTO((FILE *, bitmap)); +extern void debug_bitmap PARAMS ((bitmap)); +extern void debug_bitmap_file PARAMS ((FILE *, bitmap)); /* Print a bitmap */ -extern void bitmap_print PROTO((FILE *, bitmap, const char *, const char *)); +extern void bitmap_print PARAMS ((FILE *, bitmap, const char *, const char *)); /* Initialize a bitmap header. */ -extern bitmap bitmap_initialize PROTO((bitmap)); +extern bitmap bitmap_initialize PARAMS ((bitmap)); /* Release all memory held by bitmaps. */ -extern void bitmap_release_memory PROTO((void)); +extern void bitmap_release_memory PARAMS ((void)); -extern void debug_bitmap PROTO((bitmap)); +extern void debug_bitmap PARAMS ((bitmap)); /* Allocate a bitmap with oballoc. */ #define BITMAP_OBSTACK_ALLOC(OBSTACK) \ |