From: Richard Kenner Date: Wed, 2 Feb 1994 20:20:29 +0000 (-0500) Subject: (FILE_FUNCTION_FORMAT): Fix typo if neither dot nor dollar in label. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bea230d9d1f8c620530630adcbe1eff65fff6666;p=gcc.git (FILE_FUNCTION_FORMAT): Fix typo if neither dot nor dollar in label. From-SVN: r6469 --- diff --git a/gcc/tree.c b/gcc/tree.c index 9bf9cfd5378..d363f8442ee 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -3731,7 +3731,7 @@ dump_tree_statistics () #ifndef NO_DOT_IN_LABEL #define FILE_FUNCTION_FORMAT "_GLOBAL_.D.%s" #else /* NO_DOT_IN_LABEL */ -#define FILE_FUNCTION_FORMAT "__GLOBAL_D_%s" +#define FILE_FUNCTION_FORMAT "_GLOBAL__D_%s" #endif /* NO_DOT_IN_LABEL */ #endif /* NO_DOLLAR_IN_LABEL */