Commit d9ad9b6c by Doug Evans

* i386/cygwin32.h (ASM_OUTPUT_SOURCE_LINE): Local symbols begin with L.

From-SVN: r12309
parent f8bc3367
...@@ -175,10 +175,10 @@ while (0) ...@@ -175,10 +175,10 @@ while (0)
do \ do \
{ \ { \
static int sym_lineno = 1; \ static int sym_lineno = 1; \
fprintf (file, "\t.stabn 68,0,%d,.LM%d-", \ fprintf (file, "\t.stabn 68,0,%d,LM%d-", \
line, sym_lineno); \ line, sym_lineno); \
assemble_name (file, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0)); \ assemble_name (file, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0)); \
fprintf (file, "\n.LM%d:\n", sym_lineno); \ fprintf (file, "\nLM%d:\n", sym_lineno); \
sym_lineno += 1; \ sym_lineno += 1; \
} \ } \
while (0) while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment