Mercurial > ecos-v2_0-branch
changeset 749:c2d1d9abd250
* include/mips-stub.h: Disabled option that makes MIPS32 targets
use 64 bit registers in GDB protocol. The standard GDB does not
support this, only MIPS own version.
| author | nickg |
|---|---|
| date | Thu, 27 Feb 2003 18:42:43 +0000 |
| parents | 64431a542574 |
| children | fc01ee7daddc |
| files | packages/hal/mips/arch/current/ChangeLog packages/hal/mips/arch/current/include/mips-stub.h |
| diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/hal/mips/arch/current/ChangeLog +++ b/packages/hal/mips/arch/current/ChangeLog @@ -1,3 +1,9 @@ +2003-02-27 Nick Garnett <nickg@calivar.com> + + * include/mips-stub.h: Disabled option that makes MIPS32 targets + use 64 bit registers in GDB protocol. The standard GDB does not + support this, only MIPS own version. + 2003-01-31 Mark Salter <msalter@redhat.com> * src/hal_syscall.c (hal_syscall_handler): Let generic syscall code
--- a/packages/hal/mips/arch/current/include/mips-stub.h +++ b/packages/hal/mips/arch/current/include/mips-stub.h @@ -111,7 +111,7 @@ typedef unsigned long target_register_t; // We need to sign-extend the registers so GDB doesn't get confused. #define CYGARC_SIGN_EXTEND_REGISTERS -#elif defined(CYGPKG_HAL_MIPS_MIPS32) +#elif 0 //defined(CYGPKG_HAL_MIPS_MIPS32) // Even though we are only working with 32 bit registers, GDB expects 64 bits #define REGSIZE(X) 8 typedef unsigned long target_register_t;
