diff options
Diffstat (limited to 'gdb/vax-nat.c')
-rw-r--r-- | gdb/vax-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/vax-nat.c b/gdb/vax-nat.c index b4252d4..900a2a9 100644 --- a/gdb/vax-nat.c +++ b/gdb/vax-nat.c @@ -48,7 +48,7 @@ /* Address of the user structure. This is the the value for 32V; 3BSD uses a different value, but hey, who's still using those systems? */ -CORE_ADDR vax_kernel_u_addr = 0x80020000; +static CORE_ADDR vax_kernel_u_addr = 0x80020000; /* Location of the user's stored registers; usage is `u.u_ar0[XX]'. For 4.2BSD and ULTRIX these are negative! See <machine/reg.h>. */ @@ -59,7 +59,7 @@ static int vax_register_index[] = AP, FP, SP, PC, PS }; -CORE_ADDR +static CORE_ADDR vax_register_u_addr (CORE_ADDR u_ar0, int regnum) { gdb_assert (regnum >= 0 && regnum < ARRAY_SIZE (vax_register_index)); |