except.c (duplicate_eh_handlers, [...]): Function pointer parameters changed to use the PARAMS() macro.

* except.c (duplicate_eh_handlers, rethrow_symbol_map): Function
       pointer parameters changed to use the PARAMS() macro.

From-SVN: r24204
This commit is contained in:
Kaveh R. Ghazi 1998-12-09 07:27:21 +00:00 committed by Kaveh Ghazi
parent 0177de8737
commit 3b89e9d1ff
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Dec 9 10:15:45 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* except.c (duplicate_eh_handlers, rethrow_symbol_map): Function
pointer parameters changed to use the PARAMS() macro.
Wed Dec 9 09:12:40 EST 1998 Andrew MacLeod <amacleod@cygnus.com>
* except.h (struct handler_info): Add handler_number field.

View File

@ -978,7 +978,7 @@ clear_function_eh_region ()
int
duplicate_eh_handlers (old_note_eh_region, new_note_eh_region, map)
int old_note_eh_region, new_note_eh_region;
rtx (*map)(rtx);
rtx (*map) PARAMS ((rtx));
{
struct handler_info *ptr, *new_ptr;
int new_region, region;
@ -1029,7 +1029,7 @@ eh_region_from_symbol (sym)
rtx
rethrow_symbol_map (sym, map)
rtx sym;
rtx (*map)(rtx);
rtx (*map) PARAMS ((rtx));
{
int x, y;
for (x = 0; x < current_func_eh_entry; x++)