(LPREFIX): Overridden as `.L'.
authorRichard Stallman <rms@gnu.org>
Mon, 21 Sep 1992 01:19:24 +0000 (01:19 +0000)
committerRichard Stallman <rms@gnu.org>
Mon, 21 Sep 1992 01:19:24 +0000 (01:19 +0000)
(ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Likewise.

From-SVN: r2195

gcc/config/i386/sequent.h

index a8720280000e906e019df578660e517beb19d919..5a8dd6eb126a9bd23b19471a781a8926559a2660 100644 (file)
@@ -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)