compiles without warnings.
2000-09-06 Scott Bambrough <scottb@netwinder.org>
* 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 Scott Bambrough <scottb@netwinder.org>
+
+ * 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 <hjl@gnu.org>
- * 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 <kevinb@redhat.com>
#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
/* 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;
}
/* 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 */
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