2004-05-17 Randolph Chung <tausq@debian.org>

* hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
	(THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
	(unwind_command, hppa_alignof, prologue_inst_adjust_sp)
	(is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
	(read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
	Remove static function declarations.
This commit is contained in:
Randolph Chung
2004-05-17 14:59:16 +00:00
parent 242b25713e
commit f08f6a4ad5
2 changed files with 9 additions and 26 deletions

View File

@ -1,3 +1,12 @@
2004-05-17 Randolph Chung <tausq@debian.org>
* hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
(THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
(unwind_command, hppa_alignof, prologue_inst_adjust_sp)
(is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
(read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
Remove static function declarations.
2004-05-17 Mark Kettenis <kettenis@gnu.org> 2004-05-17 Mark Kettenis <kettenis@gnu.org>
* m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM

View File

@ -79,36 +79,10 @@ const struct objfile_data *hppa_objfile_priv_data = NULL;
#define SR4EXPORT_LDIL_OFFSET (HPPA_INSTRUCTION_SIZE * 12) #define SR4EXPORT_LDIL_OFFSET (HPPA_INSTRUCTION_SIZE * 12)
#define SR4EXPORT_LDO_OFFSET (HPPA_INSTRUCTION_SIZE * 13) #define SR4EXPORT_LDO_OFFSET (HPPA_INSTRUCTION_SIZE * 13)
/* To support detection of the pseudo-initial frame
that threads have. */
#define THREAD_INITIAL_FRAME_SYMBOL "__pthread_exit"
#define THREAD_INITIAL_FRAME_SYM_LEN sizeof(THREAD_INITIAL_FRAME_SYMBOL)
/* Sizes (in bytes) of the native unwind entries. */ /* Sizes (in bytes) of the native unwind entries. */
#define UNWIND_ENTRY_SIZE 16 #define UNWIND_ENTRY_SIZE 16
#define STUB_UNWIND_ENTRY_SIZE 8 #define STUB_UNWIND_ENTRY_SIZE 8
static void unwind_command (char *, int);
static int hppa_alignof (struct type *);
static int prologue_inst_adjust_sp (unsigned long);
static int is_branch (unsigned long);
static int inst_saves_gr (unsigned long);
static int inst_saves_fr (unsigned long);
static int compare_unwind_entries (const void *, const void *);
static void read_unwind_info (struct objfile *);
static void internalize_unwinds (struct objfile *,
struct unwind_table_entry *,
asection *, unsigned int,
unsigned int, CORE_ADDR);
static void record_text_segment_lowaddr (bfd *, asection *, void *);
/* FIXME: brobecker 2002-11-07: We will likely be able to make the /* FIXME: brobecker 2002-11-07: We will likely be able to make the
following functions static, once we hppa is partially multiarched. */ following functions static, once we hppa is partially multiarched. */
int hppa_pc_requires_run_before_use (CORE_ADDR pc); int hppa_pc_requires_run_before_use (CORE_ADDR pc);