diff options
Diffstat (limited to 'gcc/except.c')
-rwxr-xr-x | gcc/except.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gcc/except.c b/gcc/except.c index ffecaf4..1b912b5 100755 --- a/gcc/except.c +++ b/gcc/except.c @@ -514,24 +514,24 @@ static rtx last_rethrow_symbol = NULL_RTX; /* Prototypes for local functions. */ -static void push_eh_entry PROTO((struct eh_stack *)); -static struct eh_entry * pop_eh_entry PROTO((struct eh_stack *)); -static void enqueue_eh_entry PROTO((struct eh_queue *, struct eh_entry *)); -static struct eh_entry * dequeue_eh_entry PROTO((struct eh_queue *)); -static rtx call_get_eh_context PROTO((void)); -static void start_dynamic_cleanup PROTO((tree, tree)); -static void start_dynamic_handler PROTO((void)); -static void expand_rethrow PROTO((rtx)); -static void output_exception_table_entry PROTO((FILE *, int)); -static int can_throw PROTO((rtx)); -static rtx scan_region PROTO((rtx, int, int *)); -static void eh_regs PROTO((rtx *, rtx *, rtx *, int)); -static void set_insn_eh_region PROTO((rtx *, int)); +static void push_eh_entry (struct eh_stack *); +static struct eh_entry * pop_eh_entry (struct eh_stack *); +static void enqueue_eh_entry (struct eh_queue *, struct eh_entry *); +static struct eh_entry * dequeue_eh_entry (struct eh_queue *); +static rtx call_get_eh_context (void); +static void start_dynamic_cleanup (tree, tree); +static void start_dynamic_handler (void); +static void expand_rethrow (rtx); +static void output_exception_table_entry (FILE *, int); +static int can_throw (rtx); +static rtx scan_region (rtx, int, int *); +static void eh_regs (rtx *, rtx *, rtx *, int); +static void set_insn_eh_region (rtx *, int); #ifdef DONT_USE_BUILTIN_SETJMP -static void jumpif_rtx PROTO((rtx, rtx)); +static void jumpif_rtx (rtx, rtx); #endif -rtx expand_builtin_return_addr PROTO((enum built_in_function, int, rtx)); +rtx expand_builtin_return_addr (enum built_in_function, int, rtx); /* Various support routines to manipulate the various data structures used by the exception handling code. */ @@ -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) PARAMS ((rtx)); + rtx (*map) (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) PARAMS ((rtx)); + rtx (*map) (rtx); { int x, y; for (x = 0; x < current_func_eh_entry; x++) |