From: Richard Stallman Date: Mon, 21 Sep 1992 01:19:24 +0000 (+0000) Subject: (LPREFIX): Overridden as `.L'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8fed83ffd0265350d6b08f84b2dab39a9e19616f;p=gcc.git (LPREFIX): Overridden as `.L'. (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Likewise. From-SVN: r2195 --- diff --git a/gcc/config/i386/sequent.h b/gcc/config/i386/sequent.h index a8720280000..5a8dd6eb126 100644 --- a/gcc/config/i386/sequent.h +++ b/gcc/config/i386/sequent.h @@ -104,3 +104,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ (PTR) += 4; \ } \ } + +/* 10-Aug-92 pes Local labels are prefixed with ".L" */ +#undef LPREFIX +#define LPREFIX ".L" + +#undef ASM_GENERATE_INTERNAL_LABEL +#define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER)\ + sprintf ((BUF), "*.%s%d", (PREFIX), (NUMBER)) + +#undef ASM_OUTPUT_INTERNAL_LABEL +#define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)\ + fprintf (FILE, ".%s%d:\n", PREFIX, NUM)