summaryrefslogtreecommitdiff
path: root/gas/config/tc-sh.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2008-08-06 15:42:15 +0000
committerDJ Delorie <dj@delorie.com>2008-08-06 15:42:15 +0000
commit936a8a8bdfb2ceda749db6f3cfdab2805a92ae2e (patch)
tree1251d0e11a6665c9d690b24c7d6d5bc865eb2ba8 /gas/config/tc-sh.c
parentb1630514265a11b9d00c2ffbf5564ca73ff8afd5 (diff)
downloadbinutils-redhat-936a8a8bdfb2ceda749db6f3cfdab2805a92ae2e.tar.gz
* NEWS: Mention these changes.
* config/tc-h8300.h (H_TICK_HEX): Define. * config/tc-h8300.c (OPTION_H_TICK_HEX): New. (md_longopts): Add "-h-tick-hex". (md_parse_option): Support it. * doc/c-h8300.texi (H8/300 Options): Document it. * doc/as.texinfo (Overview): Likewise. * config/tc-sh.h (H_TICK_HEX): Define. * config/tc-sh.c (OPTION_H_TICK_HEX): New. (md_longopts): Add "-h-tick-hex". (md_parse_option): Support it. * doc/c-sh.texi (SH Options): Document it. * doc/c-sh64.texi (SH64 Options): Document it. * doc/as.texinfo (Overview): Likewise.
Diffstat (limited to 'gas/config/tc-sh.c')
-rw-r--r--gas/config/tc-sh.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c
index ac6e17f190..2ed1b8eddb 100644
--- a/gas/config/tc-sh.c
+++ b/gas/config/tc-sh.c
@@ -3096,6 +3096,7 @@ enum options
OPTION_NO_EXPAND,
OPTION_PT32,
#endif
+ OPTION_H_TICK_HEX,
OPTION_DUMMY /* Not used. This is just here to make it easy to add and subtract options from this enum. */
};
@@ -3122,6 +3123,7 @@ struct option md_longopts[] =
{"no-expand", no_argument, NULL, OPTION_NO_EXPAND},
{"expand-pt32", no_argument, NULL, OPTION_PT32},
#endif /* HAVE_SH64 */
+ { "h-tick-hex", no_argument, NULL, OPTION_H_TICK_HEX },
{NULL, no_argument, NULL, 0}
};
@@ -3252,6 +3254,10 @@ md_parse_option (int c, char *arg ATTRIBUTE_UNUSED)
break;
#endif /* HAVE_SH64 */
+ case OPTION_H_TICK_HEX:
+ enable_h_tick_hex = 1;
+ break;
+
default:
return 0;
}