From 3b89e9d1ff07d989a9bd398814ae8f1505f17e99 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Wed, 9 Dec 1998 07:27:21 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/except.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 332e22c6f7b..aa4225a3aac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Dec 9 10:15:45 1998 Kaveh R. Ghazi + + * 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 * except.h (struct handler_info): Add handler_number field. diff --git a/gcc/except.c b/gcc/except.c index c7cf3eddce1..2488d58772b 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -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++)