From dfb0fd366058a8428babae1e530d1e5c0aa18e7c Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 5 Jun 2004 03:25:22 +0000 Subject: * ppc-linux-nat.c (fetch_register): Don't forget to pass the gdbarch argument to register_size. --- gdb/ppc-linux-nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/ppc-linux-nat.c') diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index 0700d84b40f..0567e288b2b 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -240,7 +240,7 @@ fetch_register (int tid, int regno) 32-bit platform, 64-bit floating-point registers will require two transfers. */ for (bytes_transferred = 0; - bytes_transferred < register_size (regno); + bytes_transferred < register_size (current_gdbarch, regno); bytes_transferred += sizeof (PTRACE_XFER_TYPE)) { errno = 0; -- cgit v1.2.1