forked from Imagelibrary/binutils-gdb
Rename OPTION_omit_lock_prefix to OPTION_OMIT_LOCK_PREFIX
* config/tc-i386.c (OPTION_omit_lock_prefix): Renamed to ... (OPTION_OMIT_LOCK_PREFIX): This. (md_longopts): Updated. (md_parse_option): Likewise.
This commit is contained in:
@@ -9545,7 +9545,7 @@ const char *md_shortopts = "qn";
|
||||
#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
|
||||
#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
|
||||
#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
|
||||
#define OPTION_omit_lock_prefix (OPTION_MD_BASE + 19)
|
||||
#define OPTION_OMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
|
||||
|
||||
struct option md_longopts[] =
|
||||
{
|
||||
@@ -9575,7 +9575,7 @@ struct option md_longopts[] =
|
||||
# if defined (TE_PE) || defined (TE_PEP)
|
||||
{"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
|
||||
#endif
|
||||
{"momit-lock-prefix", required_argument, NULL, OPTION_omit_lock_prefix},
|
||||
{"momit-lock-prefix", required_argument, NULL, OPTION_OMIT_LOCK_PREFIX},
|
||||
{NULL, no_argument, NULL, 0}
|
||||
};
|
||||
size_t md_longopts_size = sizeof (md_longopts);
|
||||
@@ -9863,7 +9863,7 @@ md_parse_option (int c, char *arg)
|
||||
break;
|
||||
#endif
|
||||
|
||||
case OPTION_omit_lock_prefix:
|
||||
case OPTION_OMIT_LOCK_PREFIX:
|
||||
if (strcasecmp (arg, "yes") == 0)
|
||||
omit_lock_prefix = 1;
|
||||
else if (strcasecmp (arg, "no") == 0)
|
||||
|
||||
Reference in New Issue
Block a user