mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
Fix value for -Wnuh command line option
This commit is contained in:
@ -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>
|
1999-09-04 Steve Chamberlain <sac@pobox.com>
|
||||||
|
|
||||||
* config/tc-pj.c: New file, supports picoJava in ELF.
|
* config/tc-pj.c: New file, supports picoJava in ELF.
|
||||||
|
@ -139,8 +139,8 @@ struct option md_longopts[] =
|
|||||||
{"warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
|
{"warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
|
||||||
{"Wuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
|
{"Wuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
|
||||||
#define OPTION_NO_WARN_UNMATCHED (OPTION_MD_BASE + 5)
|
#define OPTION_NO_WARN_UNMATCHED (OPTION_MD_BASE + 5)
|
||||||
{"no-warn-unmatched-high", no_argument, NULL, OPTION_WARN_UNMATCHED},
|
{"no-warn-unmatched-high", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
|
||||||
{"Wnuh", no_argument, NULL, OPTION_WARN_UNMATCHED},
|
{"Wnuh", no_argument, NULL, OPTION_NO_WARN_UNMATCHED},
|
||||||
|
|
||||||
#if 0 /* not supported yet */
|
#if 0 /* not supported yet */
|
||||||
#define OPTION_RELAX (OPTION_MD_BASE + 6)
|
#define OPTION_RELAX (OPTION_MD_BASE + 6)
|
||||||
@ -148,7 +148,6 @@ struct option md_longopts[] =
|
|||||||
#define OPTION_CPU_DESC (OPTION_MD_BASE + 7)
|
#define OPTION_CPU_DESC (OPTION_MD_BASE + 7)
|
||||||
{"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
|
{"cpu-desc", required_argument, NULL, OPTION_CPU_DESC},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
{NULL, no_argument, NULL, 0}
|
{NULL, no_argument, NULL, 0}
|
||||||
};
|
};
|
||||||
size_t md_longopts_size = sizeof (md_longopts);
|
size_t md_longopts_size = sizeof (md_longopts);
|
||||||
@ -181,6 +180,7 @@ md_parse_option (c, arg)
|
|||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user