From: Scott Bambrough Date: Wed, 6 Sep 2000 18:43:49 +0000 (+0000) Subject: Remove stray debugging statement and move prototypes so arm-linux-tdep.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1d6e81ff4adfc014351f9351cc458c17c751e0e;p=binutils-gdb.git Remove stray debugging statement and move prototypes so arm-linux-tdep.c compiles without warnings. 2000-09-06 Scott Bambrough * arm-linux-tdep.c (arm_linux_skip_solib_resolver): Removed debug print statement. Removed arm_pc_is_thumb prototype. * config/arm/tm-arm.h (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Move prototypes here from tm-embed.h. * config/arm/tm-embed.h (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Remove prototypes. Moved to tm-arm.h. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9154e420583..8fb3c20765f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,6 +1,15 @@ +2000-09-06 Scott Bambrough + + * arm-linux-tdep.c (arm_linux_skip_solib_resolver): + Removed debug print statement. Removed arm_pc_is_thumb prototype. + * config/arm/tm-arm.h (arm_pc_is_thumb, arm_pc_is_thumb_dummy): + Move prototypes here from tm-embed.h. + * config/arm/tm-embed.h (arm_pc_is_thumb, arm_pc_is_thumb_dummy): + Remove prototypes. Moved to tm-arm.h. + 2000-09-06 H.J. Lu - * TODO: Add hardware watchpint problems on x86 OSes for 5.1. + * TODO: Add hardware watchpoint problems on x86 OSes for 5.1. 2000-09-06 Kevin Buettner diff --git a/gdb/arm-linux-tdep.c b/gdb/arm-linux-tdep.c index 0e4c370ebfd..f50f7121f49 100644 --- a/gdb/arm-linux-tdep.c +++ b/gdb/arm-linux-tdep.c @@ -31,10 +31,6 @@ #include "symfile.h" #include "objfiles.h" -/* FIXME: Put in common header file shared between arm-tdep.c and - arm-linux-tdep.c */ -int arm_pc_is_thumb (CORE_ADDR memaddr); - #ifdef GET_LONGJMP_TARGET /* Figure out where the longjmp will land. We expect that we have @@ -431,10 +427,9 @@ arm_linux_skip_solib_resolver (CORE_ADDR pc) /* Plug in functions for other kinds of resolvers here. */ result = skip_hurd_resolver (pc); - printf ("Result = 0x%08lx\n", result); + if (result) return result; - return 0; } diff --git a/gdb/config/arm/tm-arm.h b/gdb/config/arm/tm-arm.h index ed8e80c7d58..190b8b26311 100644 --- a/gdb/config/arm/tm-arm.h +++ b/gdb/config/arm/tm-arm.h @@ -513,4 +513,11 @@ extern int coff_sym_is_thumb (int val); /* The first 0x20 bytes are the trap vectors. */ #define LOWEST_PC 0x20 +/* Function to determine whether MEMADDR is in a Thumb function. */ +extern int arm_pc_is_thumb (bfd_vma memaddr); + +/* Function to determine whether MEMADDR is in a call dummy called from + a Thumb function. */ +extern int arm_pc_is_thumb_dummy (bfd_vma memaddr); + #endif /* TM_ARM_H */ diff --git a/gdb/config/arm/tm-embed.h b/gdb/config/arm/tm-embed.h index c2a856b758c..5069f3f4a87 100644 --- a/gdb/config/arm/tm-embed.h +++ b/gdb/config/arm/tm-embed.h @@ -53,14 +53,6 @@ extern int arm_in_call_stub (CORE_ADDR pc, char *name); extern CORE_ADDR arm_skip_stub (CORE_ADDR pc); -/* Function to determine whether MEMADDR is in a Thumb function. */ -extern int arm_pc_is_thumb (bfd_vma memaddr); - -/* Function to determine whether MEMADDR is in a call dummy called from - a Thumb function. */ -extern int arm_pc_is_thumb_dummy (bfd_vma memaddr); - - #undef IN_SIGTRAMP #define IN_SIGTRAMP(pc, name) 0