From: Richard Kenner Date: Fri, 24 Jun 1994 20:09:07 +0000 (-0400) Subject: (ASM_IDENTIFY_LANGUAGE): New macro. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=add2167d64c449f3643ac7acf75c66a076ecda73;p=gcc.git (ASM_IDENTIFY_LANGUAGE): New macro. From-SVN: r7560 --- 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. */