diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-09-15 08:41:40 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-09-15 08:41:40 -0700 |
commit | a50942089dda154e9c1b0a8311aa5e07193712cc (patch) | |
tree | f441f06dcd785b01018e529c082c9aeb8786e9e8 /gas | |
parent | 6d74e8a103516a2ca3cec9a0cc3c114b9896d028 (diff) | |
download | gdb-a50942089dda154e9c1b0a8311aa5e07193712cc.zip gdb-a50942089dda154e9c1b0a8311aa5e07193712cc.tar.gz gdb-a50942089dda154e9c1b0a8311aa5e07193712cc.tar.bz2 |
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.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 3f499cc..0cbfb40 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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> diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 5da257f..39581f1 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -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) |