diff options
author | Ian Lance Taylor <ian@airs.com> | 2003-11-23 01:10:45 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2003-11-23 01:10:45 +0000 |
commit | 4e48c9dd27470559a7c5ff96444b2dfd0df4a1ea (patch) | |
tree | f5522df222b70ce16d5e858e4f0e68cc9c75182d /binutils/cxxfilt.c | |
parent | d422fe19c6d3e626916f52859cd30df6fe2946ea (diff) | |
download | gdb-4e48c9dd27470559a7c5ff96444b2dfd0df4a1ea.zip gdb-4e48c9dd27470559a7c5ff96444b2dfd0df4a1ea.tar.gz gdb-4e48c9dd27470559a7c5ff96444b2dfd0df4a1ea.tar.bz2 |
* cxxfilt.c (long_options): Add --no-params.
(main): Handle -p/--no-params.
* doc/binutils.texi (c++filt): Document -p/--no-params.
Diffstat (limited to 'binutils/cxxfilt.c')
-rw-r--r-- | binutils/cxxfilt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/binutils/cxxfilt.c b/binutils/cxxfilt.c index f41493b..b909510 100644 --- a/binutils/cxxfilt.c +++ b/binutils/cxxfilt.c @@ -100,6 +100,7 @@ static const struct option long_options[] = { {"strip-underscores", no_argument, 0, '_'}, {"format", required_argument, 0, 's'}, {"help", no_argument, 0, 'h'}, + {"no-params", no_argument, 0, 'p'}, {"no-strip-underscores", no_argument, 0, 'n'}, {"version", no_argument, 0, 'v'}, {0, no_argument, 0, 0} @@ -171,7 +172,7 @@ main (int argc, char **argv) strip_underscore = TARGET_PREPENDS_UNDERSCORE; - while ((c = getopt_long (argc, argv, "_ns:", long_options, (int *) 0)) != EOF) + while ((c = getopt_long (argc, argv, "_nps:", long_options, (int *) 0)) != EOF) { switch (c) { @@ -183,6 +184,9 @@ main (int argc, char **argv) case 'n': strip_underscore = 0; break; + case 'p': + flags &= ~ DMGL_PARAMS; + break; case 'v': print_version ("c++filt"); return (0); |