Fix value for -Wnuh command line option

This commit is contained in:
Nick Clifton 1999-09-06 10:24:19 +00:00
parent 1c56fb878f
commit d33886536c
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
1999-09-06 Nick Clifton <nickc@cygnus.com>
* config/tc-m32r.c (md_longopts): Fix value for -Wnuh.
1999-09-04 Steve Chamberlain <sac@pobox.com>
* config/tc-pj.c: New file, supports picoJava in ELF.

View File

@ -139,8 +139,8 @@ struct option md_longopts[] =
{"warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
{"Wuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
#define OPTION_NO_WARN_UNMATCHED (OPTION_MD_BASE + 5)
{"no-warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
{"Wnuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
{"no-warn-unmatched-high", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
{"Wnuh", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
#if 0 /* not supported yet */
#define OPTION_RELAX (OPTION_MD_BASE + 6)
@ -148,7 +148,6 @@ struct option md_longopts[] =
#define OPTION_CPU_DESC (OPTION_MD_BASE + 7)
{"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
#endif
{NULL, no_argument, NULL, 0}
};
size_t md_longopts_size = sizeof (md_longopts);
@ -181,6 +180,7 @@ md_parse_option (c, arg)
default:
return 0;
}
return 1;
}