diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1995-02-20 16:40:44 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1995-02-20 16:40:44 -0800 |
commit | 4925e137f6e6c680841882c236b1014bcc8058d1 (patch) | |
tree | 2d7312c438c7b710b7927cb3723aacb3bc13a7f2 /gcc | |
parent | 00061e4aa45094e5416b34a426a7ea20ae636a68 (diff) | |
download | gcc-4925e137f6e6c680841882c236b1014bcc8058d1.zip gcc-4925e137f6e6c680841882c236b1014bcc8058d1.tar.gz gcc-4925e137f6e6c680841882c236b1014bcc8058d1.tar.bz2 |
* config/svr4.h (ASM_OUTPUT_SOURCE_LINE): Use assemble_name.
From-SVN: r8973
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/svr4.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/config/svr4.h b/gcc/config/svr4.h index 7f4491b..2dd7980 100644 --- a/gcc/config/svr4.h +++ b/gcc/config/svr4.h @@ -300,10 +300,11 @@ while (0) do \ { \ static int sym_lineno = 1; \ - fprintf (file, ".stabn 68,0,%d,.LM%d-%s\n.LM%d:\n", \ - line, sym_lineno, \ - XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0), \ - sym_lineno); \ + fprintf (file, ".stabn 68,0,%d,.LM%d-", \ + line, sym_lineno); \ + assemble_name (file, \ + XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));\ + fprintf (file, "\n.LM%d:\n", sym_lineno); \ sym_lineno += 1; \ } \ while (0) |