OSDN Git Service

(LPREFIX): Overridden as `.L'.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 21 Sep 1992 01:19:24 +0000 (01:19 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 21 Sep 1992 01:19:24 +0000 (01:19 +0000)
(ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@2195 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/i386/sequent.h

index a872028..5a8dd6e 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)