diff options
author | Doug Evans <dje@google.com> | 1999-08-29 20:45:22 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1999-08-29 20:45:22 +0000 |
commit | 1174497c8ae1bf9293addcb216c48dbdbf487e4f (patch) | |
tree | 8d99d36fc3a770ab3d6f300324fefff10bb44f6e /gas | |
parent | a349b1517f3aa058243fe287aa13dcdc0904e194 (diff) | |
download | gdb-1174497c8ae1bf9293addcb216c48dbdbf487e4f.zip gdb-1174497c8ae1bf9293addcb216c48dbdbf487e4f.tar.gz gdb-1174497c8ae1bf9293addcb216c48dbdbf487e4f.tar.bz2 |
* config/tc-m32r.c (md_parse_option): Delete unrecognized option
error message (done elsewhere).
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-m32r.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index dfb737c..8861565 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +1999-08-29 Doug Evans <devans@casey.cygnus.com> + + * config/tc-m32r.c (md_parse_option): Delete unrecognized option + error message (done elsewhere). + Sat Aug 28 01:23:11 1999 Jeffrey A Law (law@cygnus.com) * config/tc-hppa.c (pa_ip): Do not allow '*' in 32bit completers. diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c index 300f997..46f70a5 100644 --- a/gas/config/tc-m32r.c +++ b/gas/config/tc-m32r.c @@ -179,10 +179,6 @@ md_parse_option (c, arg) #endif default: - if (arg) - fprintf (stderr, _("%s: unrecognised command line option: -%c\n"), myname, c); - else - fprintf (stderr, _("%s: unrecognised command line option: -%c%s\n"), myname, c, arg); return 0; } return 1; |