aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/psim.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-06-08 16:44:28 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-06-08 16:44:28 +0000
commit11eef9ed35b52f3e2647551120d8a0d16a5fbf15 (patch)
treee8445be4f8e57316233b832435ed7f657a282773 /sim/ppc/psim.c
parent8294052ca93e44a242bfd0a8d4fb1607da7440df (diff)
downloadgdb-11eef9ed35b52f3e2647551120d8a0d16a5fbf15.zip
gdb-11eef9ed35b52f3e2647551120d8a0d16a5fbf15.tar.gz
gdb-11eef9ed35b52f3e2647551120d8a0d16a5fbf15.tar.bz2
ppc sim: Improve invalid option error message
This patch improves the error message when an invalid option is detected, by also printing the option that actually caused the error. For instance, from GDB: (gdb) target sim --hello Invalid option: --hello Usage: [...] We also added the usage after an invalid long-name option (Eg: --hello) to be in line with what's being done for all other invalid options being detected. sim/ppc/ChangeLog: * psim.c (psim_options): Add option that cause the error in invalid-option error messages. Print the usage when detecting an invalid long-name option.
Diffstat (limited to 'sim/ppc/psim.c')
-rw-r--r--sim/ppc/psim.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sim/ppc/psim.c b/sim/ppc/psim.c
index 076a50c..d814486 100644
--- a/sim/ppc/psim.c
+++ b/sim/ppc/psim.c
@@ -261,6 +261,7 @@ psim_options(device *root,
while (*p != '\0') {
switch (*p) {
default:
+ printf_filtered ("Invalid Option: %s\n", argv[argp]);
psim_usage(0, 0);
error ("");
break;
@@ -368,7 +369,11 @@ psim_options(device *root,
exit (0);
}
else
- error("Unrecognized option");
+ {
+ printf_filtered ("Invalid option: %s\n", argv[argp]);
+ psim_usage (0, 0);
+ error ("");
+ }
break;
}
p += 1;