diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-12 02:14:56 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-12 02:14:56 +0000 |
commit | 2883a3edf742fdc13c2730a16cc47649d6353251 (patch) | |
tree | ae14f5fe1cbe481163ab4bcb25d7f4cec4d064a8 /gcc/java/boehm.c | |
parent | 5ff01bdace7c14be35f49c329cf6954f093aa7c4 (diff) | |
download | gcc-2883a3edf742fdc13c2730a16cc47649d6353251.tar.gz |
* All Files: Convert to ISO C style function definitions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61218 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/boehm.c')
-rw-r--r-- | gcc/java/boehm.c | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/gcc/java/boehm.c b/gcc/java/boehm.c index 8bf76502c93..b806a32af25 100644 --- a/gcc/java/boehm.c +++ b/gcc/java/boehm.c @@ -43,9 +43,8 @@ static void set_bit (unsigned HOST_WIDE_INT *, unsigned HOST_WIDE_INT *, /* Treat two HOST_WIDE_INT's as a contiguous bitmap, with bit 0 being the least significant. This function sets bit N in the bitmap. */ static void -set_bit (low, high, n) - unsigned HOST_WIDE_INT *low, *high; - unsigned int n; +set_bit (unsigned HOST_WIDE_INT *low, unsigned HOST_WIDE_INT *high, + unsigned int n) { HOST_WIDE_INT *which; @@ -62,15 +61,14 @@ set_bit (low, high, n) /* Recursively mark reference fields. */ static void -mark_reference_fields (field, low, high, ubit, - pointer_after_end, all_bits_set, - last_set_index, last_view_index) - tree field; - unsigned HOST_WIDE_INT *low, *high; - unsigned int ubit; - int *pointer_after_end, *all_bits_set; - int *last_set_index; - HOST_WIDE_INT *last_view_index; +mark_reference_fields (tree field, + unsigned HOST_WIDE_INT *low, + unsigned HOST_WIDE_INT *high, + unsigned int ubit, + int *pointer_after_end, + int *all_bits_set, + int *last_set_index, + HOST_WIDE_INT *last_view_index) { /* See if we have fields from our superclass. */ if (DECL_NAME (field) == NULL_TREE) |