From add2167d64c449f3643ac7acf75c66a076ecda73 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 24 Jun 1994 16:09:07 -0400 Subject: [PATCH] (ASM_IDENTIFY_LANGUAGE): New macro. From-SVN: r7560 --- gcc/config/vax/vax.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index d510bd4fe53..8714c9182c6 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. */ -- 2.30.2