aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1995-05-11 11:31:37 -0700
committerJim Wilson <wilson@gcc.gnu.org>1995-05-11 11:31:37 -0700
commitdccc9e8544fc89edb04ed9de2141fe71e70cf3ae (patch)
tree4aeb9a2777c8cf41aa518185c0e3147e29aedac1 /gcc
parent58add97ac9482b840c8de0a2bd1b481dfa848b60 (diff)
downloadgcc-dccc9e8544fc89edb04ed9de2141fe71e70cf3ae.zip
gcc-dccc9e8544fc89edb04ed9de2141fe71e70cf3ae.tar.gz
gcc-dccc9e8544fc89edb04ed9de2141fe71e70cf3ae.tar.bz2
(mips_output_lineno): Use LOCAL_LABEL_PREFIX.
From-SVN: r9620
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/mips/mips.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
index 6ecfa20..9296fde 100644
--- a/gcc/config/mips/mips.c
+++ b/gcc/config/mips/mips.c
@@ -4038,8 +4038,9 @@ mips_output_lineno (stream, line)
if (write_symbols == DBX_DEBUG)
{
++sym_lineno;
- fprintf (stream, "$LM%d:\n\t%s %d,0,%d,$LM%d\n",
- sym_lineno, ASM_STABN_OP, N_SLINE, line, sym_lineno);
+ fprintf (stream, "%sLM%d:\n\t%s %d,0,%d,%sLM%d\n",
+ LOCAL_LABEL_PREFIX, sym_lineno, ASM_STABN_OP, N_SLINE, line,
+ LOCAL_LABEL_PREFIX, sym_lineno);
}
else