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 | 69080925ab5d135ada4878f85b76e4f298bc65ae (patch) | |
tree | def6faf32244cfaa80de0ef878bcbbeaba6f1a29 /gdb/sh-tdep.c | |
parent | c8c94f487a0f88f5bc5d8133668ed533de94f8e6 (diff) | |
download | gdb-69080925ab5d135ada4878f85b76e4f298bc65ae.tar.gz |
* 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 9e6b89b355a..2ab3f53c73c 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 { |