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:
H.J. Lu
2014-09-15 08:41:40 -07:00
parent 6d74e8a103
commit a50942089d
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2014-09-15 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (OPTION_omit_lock_prefix): Renamed to ...
(OPTION_OMIT_LOCK_PREFIX): This.
(md_longopts): Updated.
(md_parse_option): Likewise.
2014-09-15 Andrew Bennett <andrew.bennett@imgtec.com>
Matthew Fortune <matthew.fortune@imgtec.com>

View File

@ -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)