From 155c1d33d83434961f865bb223252676fc66b311 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 11 Oct 2003 15:38:55 +0000 Subject: * i386bsd-tdep.c (i386bsd_init_abi): Use ARRAY_SIZE to initialize TDEP->sc_num_regs. --- gdb/i386bsd-tdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/i386bsd-tdep.c') diff --git a/gdb/i386bsd-tdep.c b/gdb/i386bsd-tdep.c index aa3a7e4..80739cf 100644 --- a/gdb/i386bsd-tdep.c +++ b/gdb/i386bsd-tdep.c @@ -87,7 +87,7 @@ i386bsd_aout_in_solib_call_trampoline (CORE_ADDR pc, char *name) /* Traditional BSD (4.3 BSD, still used for BSDI and 386BSD). */ /* From . */ -int i386bsd_sc_reg_offset[I386_NUM_GREGS] = +int i386bsd_sc_reg_offset[] = { -1, /* %eax */ -1, /* %ecx */ @@ -128,7 +128,7 @@ i386bsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) tdep->sigtramp_end = 0xfdbfe000; tdep->sigcontext_addr = i386bsd_sigcontext_addr; tdep->sc_reg_offset = i386bsd_sc_reg_offset; - tdep->sc_num_regs = I386_NUM_GREGS; + tdep->sc_num_regs = ARRAY_SIZE (i386bsd_sc_reg_offset); } -- cgit v1.1