aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-06-24 16:09:07 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1994-06-24 16:09:07 -0400
commitadd2167d64c449f3643ac7acf75c66a076ecda73 (patch)
treee3970e65e7b32a47065256e783299ad624f46c25 /gcc
parent0bdece8adf080003a7698ce3cf1ccf680f0c1efa (diff)
downloadgcc-add2167d64c449f3643ac7acf75c66a076ecda73.zip
gcc-add2167d64c449f3643ac7acf75c66a076ecda73.tar.gz
gcc-add2167d64c449f3643ac7acf75c66a076ecda73.tar.bz2
(ASM_IDENTIFY_LANGUAGE): New macro.
From-SVN: r7560
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/vax/vax.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h
index d510bd4..8714c91 100644
--- a/gcc/config/vax/vax.h
+++ b/gcc/config/vax/vax.h
@@ -1173,6 +1173,17 @@ do { char dstr[30]; \
( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \
sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO)))
+/* When debugging, we want to output an extra dummy label so that gas
+ can distinguish between D_float and G_float prior to processing the
+ .stabs directive identifying type double. */
+
+#define ASM_IDENTIFY_LANGUAGE(FILE) \
+ do { \
+ output_lang_identify (FILE); \
+ if (write_symbols == DBX_DEBUG) \
+ fprintf (FILE, "___vax_%c_doubles:\n", ASM_DOUBLE_CHAR); \
+ } while (0)
+
/* Define the parentheses used to group arithmetic operations
in assembler code. */