aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-04-01 14:17:17 +0000
committerNick Clifton <nickc@redhat.com>2005-04-01 14:17:17 +0000
commitd2c5f73ed772457d6e3b82d38abe007863ddca2c (patch)
treecc63ea9e267d2fd11b1abd7901f0bc36c40bb8df /gas/config
parentce8d332a69fd042e0fa29d8c08050efafc1bffd0 (diff)
downloadgdb-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')
-rw-r--r--gas/config/atof-vax.c2
-rw-r--r--gas/config/tc-vax.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/config/atof-vax.c b/gas/config/atof-vax.c
index b94e560..7cc139b 100644
--- a/gas/config/atof-vax.c
+++ b/gas/config/atof-vax.c
@@ -29,7 +29,7 @@
#define F_PRECISION 2
/* Length in LittleNums of guard bits. */
-#define GUARD 2
+#define GUARD 2
int flonum_gen2vax (int, FLONUM_TYPE *, LITTLENUM_TYPE *);
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},
};