diff options
author | Nick Clifton <nickc@redhat.com> | 2005-04-01 14:17:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-04-01 14:17:17 +0000 |
commit | d2c5f73ed772457d6e3b82d38abe007863ddca2c (patch) | |
tree | cc63ea9e267d2fd11b1abd7901f0bc36c40bb8df /gas/config/tc-vax.c | |
parent | ce8d332a69fd042e0fa29d8c08050efafc1bffd0 (diff) | |
download | gdb-d2c5f73ed772457d6e3b82d38abe007863ddca2c.zip gdb-d2c5f73ed772457d6e3b82d38abe007863ddca2c.tar.gz gdb-d2c5f73ed772457d6e3b82d38abe007863ddca2c.tar.bz2 |
Support the .f_floating, .d_floating, .g_floating and .h_floating directives
for the VAX target in order to be more compatible with the VAX MACRO assembler.
Diffstat (limited to 'gas/config/tc-vax.c')
-rw-r--r-- | gas/config/tc-vax.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/config/tc-vax.c b/gas/config/tc-vax.c index 1b4e6f1..fef859e 100644 --- a/gas/config/tc-vax.c +++ b/gas/config/tc-vax.c @@ -251,6 +251,10 @@ const pseudo_typeS md_pseudo_table[] = {"ffloat", float_cons, 'f'}, {"gfloat", float_cons, 'g'}, {"hfloat", float_cons, 'h'}, + {"d_floating", float_cons, 'd'}, + {"f_floating", float_cons, 'f'}, + {"g_floating", float_cons, 'g'}, + {"h_floating", float_cons, 'h'}, {NULL, NULL, 0}, }; |