diff options
author | Doug Evans <dje@sebabeach.org> | 1999-08-29 20:45:22 +0000 |
---|---|---|
committer | Doug Evans <dje@sebabeach.org> | 1999-08-29 20:45:22 +0000 |
commit | 41e171bfab779f0dde29fb3bf530e6bb3103131b (patch) | |
tree | 8879d8737627a7775c75786d4838ca6083620736 | |
parent | 35b05dd0ad87cbb52f4d8b886b17ea9f4cdb48f9 (diff) | |
download | binutils-redhat-41e171bfab779f0dde29fb3bf530e6bb3103131b.tar.gz |
* config/tc-m32r.c (md_parse_option): Delete unrecognized option
error message (done elsewhere).
-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 dfb737c0fc..8861565713 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 300f997952..46f70a5cbf 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; |