From: Richard Stallman Date: Tue, 11 May 1993 04:56:36 +0000 (+0000) Subject: (LPREFIX): Don't include a `.' in the label name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=344ba054f0d9d62f3b4eb26ddea335756e53d887;p=gcc.git (LPREFIX): Don't include a `.' in the label name. From-SVN: r4423 --- diff --git a/gcc/config/i386/next.h b/gcc/config/i386/next.h index 8cbfb8b4e53..a0c30160fa8 100644 --- a/gcc/config/i386/next.h +++ b/gcc/config/i386/next.h @@ -119,6 +119,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* We do not want a dot in internal labels. */ +#undef LPREFIX +#define LPREFIX "L" + #undef ASM_GENERATE_INTERNAL_LABEL #define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER) \ sprintf ((BUF), "*%s%d", (PREFIX), (NUMBER))