aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1998-12-09 07:27:21 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1998-12-09 07:27:21 +0000
commit3b89e9d1ff07d989a9bd398814ae8f1505f17e99 (patch)
treeb2297c0ade69611f95624f79c63736d4aa945bd4 /gcc/except.c
parent0177de873717bfea42604efef6f45d1265c2e36c (diff)
downloadgcc-3b89e9d1ff07d989a9bd398814ae8f1505f17e99.zip
gcc-3b89e9d1ff07d989a9bd398814ae8f1505f17e99.tar.gz
gcc-3b89e9d1ff07d989a9bd398814ae8f1505f17e99.tar.bz2
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
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c
index c7cf3ed..2488d58 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++)