diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/alpha-tdep.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/alpha-tdep.c')
-rw-r--r-- | gdb/alpha-tdep.c | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/gdb/alpha-tdep.c b/gdb/alpha-tdep.c index e4962d0..465efac 100644 --- a/gdb/alpha-tdep.c +++ b/gdb/alpha-tdep.c @@ -34,35 +34,34 @@ /* Prototypes for local functions. */ -static alpha_extra_func_info_t push_sigtramp_desc PARAMS ((CORE_ADDR low_addr)); +static alpha_extra_func_info_t push_sigtramp_desc (CORE_ADDR low_addr); -static CORE_ADDR read_next_frame_reg PARAMS ((struct frame_info *, int)); +static CORE_ADDR read_next_frame_reg (struct frame_info *, int); -static CORE_ADDR heuristic_proc_start PARAMS ((CORE_ADDR)); +static CORE_ADDR heuristic_proc_start (CORE_ADDR); -static alpha_extra_func_info_t heuristic_proc_desc PARAMS ((CORE_ADDR, - CORE_ADDR, - struct frame_info *)); +static alpha_extra_func_info_t heuristic_proc_desc (CORE_ADDR, + CORE_ADDR, + struct frame_info *); -static alpha_extra_func_info_t find_proc_desc PARAMS ((CORE_ADDR, - struct frame_info *)); +static alpha_extra_func_info_t find_proc_desc (CORE_ADDR, + struct frame_info *); #if 0 -static int alpha_in_lenient_prologue PARAMS ((CORE_ADDR, CORE_ADDR)); +static int alpha_in_lenient_prologue (CORE_ADDR, CORE_ADDR); #endif -static void reinit_frame_cache_sfunc PARAMS ((char *, int, - struct cmd_list_element *)); +static void reinit_frame_cache_sfunc (char *, int, struct cmd_list_element *); -static CORE_ADDR after_prologue PARAMS ((CORE_ADDR pc, - alpha_extra_func_info_t proc_desc)); +static CORE_ADDR after_prologue (CORE_ADDR pc, + alpha_extra_func_info_t proc_desc); -static int alpha_in_prologue PARAMS ((CORE_ADDR pc, - alpha_extra_func_info_t proc_desc)); +static int alpha_in_prologue (CORE_ADDR pc, + alpha_extra_func_info_t proc_desc); -static int alpha_about_to_return PARAMS ((CORE_ADDR pc)); +static int alpha_about_to_return (CORE_ADDR pc); -void _initialize_alpha_tdep PARAMS ((void)); +void _initialize_alpha_tdep (void); /* Heuristic_proc_start may hunt through the text section for a long time across a 2400 baud serial line. Allows the user to limit this @@ -169,7 +168,7 @@ struct linked_proc_info #ifndef TM_LINUXALPHA_H /* HACK: Provide a prototype when compiling this file for non linuxalpha targets. */ -long alpha_linux_sigtramp_offset PARAMS ((CORE_ADDR pc)); +long alpha_linux_sigtramp_offset (CORE_ADDR pc); #endif long alpha_linux_sigtramp_offset (pc) |