diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 21:37:49 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 21:37:49 +0000 |
commit | a69146da95175ae2ab5043397ddf22db85302ed9 (patch) | |
tree | 0c16ad9a7c966e0231e5c729b0997d11616544b6 | |
parent | 74da7425d55299cd9909186ec5dfb56134cc779c (diff) | |
download | fsf-binutils-gdb-a69146da95175ae2ab5043397ddf22db85302ed9.zip fsf-binutils-gdb-a69146da95175ae2ab5043397ddf22db85302ed9.tar.gz fsf-binutils-gdb-a69146da95175ae2ab5043397ddf22db85302ed9.tar.bz2 |
* sim-options.c (standard_options): Fix the names of H8
variants.
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/sim-options.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index c7ff605..f95071f 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2003-11-22 Kazu Hirata <kazu@cs.umass.edu> + + * sim-options.c (standard_options): Fix the names of H8 + variants. + 2003-10-30 Andrew Cagney <cagney@redhat.com> * sim-trace.c, sim-base.h: Replace "struct symbol_cache_entry" diff --git a/sim/common/sim-options.c b/sim/common/sim-options.c index df12a63..94d0de4 100644 --- a/sim/common/sim-options.c +++ b/sim/common/sim-options.c @@ -154,13 +154,13 @@ static const OPTION standard_options[] = #ifdef SIM_H8300 /* FIXME: Should be movable to h8300 dir. */ { {"h8300h", no_argument, NULL, OPTION_H8300H}, - 'h', NULL, "Indicate the CPU is h8/300h", + 'h', NULL, "Indicate the CPU is H8/300H", standard_option_handler }, { {"h8300s", no_argument, NULL, OPTION_H8300S}, - 'S', NULL, "Indicate the CPU is h8/300s", + 'S', NULL, "Indicate the CPU is H8S", standard_option_handler }, { {"h8300sx", no_argument, NULL, OPTION_H8300SX}, - 'x', NULL, "Indicate the CPU is h8/300sx", + 'x', NULL, "Indicate the CPU is H8SX", standard_option_handler }, #endif |