From: Richard Kenner Date: Fri, 24 Jun 1994 20:09:07 +0000 (-0400) Subject: (ASM_IDENTIFY_LANGUAGE): New macro. X-Git-Tag: misc/cutover-egcs-0~6383 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=add2167d64c449f3643ac7acf75c66a076ecda73;p=thirdparty%2Fgcc.git (ASM_IDENTIFY_LANGUAGE): New macro. From-SVN: r7560 --- diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index d510bd4fe53b..8714c9182c6e 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. */