diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2000-02-24 03:31:45 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2000-02-24 03:31:45 +0000 |
commit | 091be84d73b3a4f706d2e566df4e11f7b5fd625a (patch) | |
tree | edf9e0dd85d4d0f4e5bed69566030eaa19fd344b /gdb/sh-tdep.c | |
parent | abd63a324ba0be30ce0f6287400984b5a4560099 (diff) | |
download | gdb-091be84d73b3a4f706d2e566df4e11f7b5fd625a.zip gdb-091be84d73b3a4f706d2e566df4e11f7b5fd625a.tar.gz gdb-091be84d73b3a4f706d2e566df4e11f7b5fd625a.tar.bz2 |
* configure.tgt: Add arm, mips, sh wince targets.
* config/arm/tm-wince.h: New file.
* config/arm/wince.mt New file.
* config/sh/tm-wince.h: New file.
* config/sh/wince.mt New file.
* config/mips/tm-wince.h: New file.
* config/mips/wince.mt New file.
* wince.c: New file.
* wince-stub.c: New file.
* wince-stub.h: New file.
* sh-tdep.c: Use correct register names for Windows CE.
Diffstat (limited to 'gdb/sh-tdep.c')
-rw-r--r-- | gdb/sh-tdep.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/sh-tdep.c b/gdb/sh-tdep.c index 9e6b89b..2ab3f53 100644 --- a/gdb/sh-tdep.c +++ b/gdb/sh-tdep.c @@ -88,9 +88,11 @@ static char *sh3e_reg_names[] = { }; /* *INDENT-ON* */ - - +#ifdef _WIN32_WCE +char **sh_register_names = sh3_reg_names; +#else char **sh_register_names = sh_generic_reg_names; +#endif struct { |