mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
Fix value for -Wnuh command line option
This commit is contained in:
parent
1c56fb878f
commit
d33886536c
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user