+2001-03-28 Andrew Cagney <ac131313@redhat.com>
+
+ * MAINTAINERS: Change ns32k target to ,-Werror.
+
+ * ns32k-tdep.c: Include "gdbcore.h"
+ (flip_bytes): Change first argument to void*. Add forward
+ declaration.
+ (sign_extend): Add declaration.
+ (merlin_frame_num_args): Add final else clause to if-else chain.
+ (umax_frame_num_args): Ditto.
+ * config/ns32k/tm-umax.h (ns32k_localcount): Declare.
+ (flip_bytes): Ditto.
+
2001-03-28 Mark Kettenis <kettenis@gnu.org>
* i386-linux-tdep.c (FRAMELESS_SIGNAL): Moved here from
mn10300 --target=mn10300-elf ,-Werror
Andrew Cagney cagney@cygnus.com
- ns32k --target=ns32k-netbsd ,Werror
+ ns32k --target=ns32k-netbsd ,-Werror
Maintenance only
pa (--target=hppa1.1-hp-proelf broken)
ways in the stack frame. sp is even more special:
the address we return for it IS the sp for the next frame. */
+extern int ns32k_localcount (CORE_ADDR enter_pc);
+
#define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
{ \
register int regmask, regnum; \
/* Insert the specified number of args and function address
into a call sequence of the above form stored at DUMMYNAME. */
+void flip_bytes (void *ptr, int count);
+
#define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p) \
{ \
int flipped; \
#include "defs.h"
#include "frame.h"
+#include "gdbcore.h"
+
+static int sign_extend (int value, int bits);
void
_initialize_ns32k_tdep (void)
width = 2;
else if (insn == 0x57f) /* adjspd */
width = 4;
+ else
+ internal_error (__FILE__, __LINE__, "bad else");
numargs = read_memory_integer (pc + 2, width);
if (width > 1)
flip_bytes (&numargs, width);
width = 2;
else if (insn == 0x57f) /* adjspd */
width = 4;
+ else
+ internal_error (__FILE__, __LINE__, "bad else");
numargs = read_memory_integer (pc + 2, width);
if (width > 1)
flip_bytes (&numargs, width);
}
+static int
sign_extend (int value, int bits)
{
value = value & ((1 << bits) - 1);
}
void
-flip_bytes (char *ptr, int count)
+flip_bytes (void *p, int count)
{
char tmp;
+ char *ptr = 0;
while (count > 0)
{