summaryrefslogtreecommitdiff
path: root/gcc/config/svr3.h
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-09-21 07:05:59 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1996-09-21 07:05:59 -0400
commit66dae8927cfd8c7e37c6c80133b1be0f0dc4f675 (patch)
treecb1b380b97b2b527298ca3a4d13faafb28ee3a05 /gcc/config/svr3.h
parentbc9b7c0d40aae12772ec66db9ebafff8e414eff6 (diff)
downloadgcc-66dae8927cfd8c7e37c6c80133b1be0f0dc4f675.tar.gz
(USER_LABEL_PREFIX): Redefine, not ASM_OUTPUT_LABELREF.
From-SVN: r12752
Diffstat (limited to 'gcc/config/svr3.h')
-rw-r--r--gcc/config/svr3.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/gcc/config/svr3.h b/gcc/config/svr3.h
index c4f0b012243..6b0034fae86 100644
--- a/gcc/config/svr3.h
+++ b/gcc/config/svr3.h
@@ -1,8 +1,7 @@
-/* svr3.h -- operating system specific defines to be used when
- targeting GCC for some generic System V Release 3 system.
+/* Operating system specific defines to be used when targeting GCC for
+ generic System V Release 3 system.
Copyright (C) 1991, 1996 Free Software Foundation, Inc.
-
- Written by Ron Guilmette (rfg@netcom.com).
+ Contributed by Ron Guilmette (rfg@monkeys.com).
This file is part of GNU CC.
@@ -160,14 +159,13 @@ Boston, MA 02111-1307, USA.
#undef ASM_BYTE_OP
#define ASM_BYTE_OP "\t.byte"
-/* This is how to output a reference to a user-level label named NAME.
- `assemble_name' uses this.
+/* The prefix to add to user-visible assembler symbols. */
For System V Release 3 the convention is to prepend a leading
underscore onto user-level symbol names. */
-#undef ASM_OUTPUT_LABELREF
-#define ASM_OUTPUT_LABELREF(FILE,NAME) fprintf (FILE, "_%s", NAME)
+#undef USER_LABEL_PREFIX
+#define USER_LABEL_PREFIX "_"
/* This is how to output an internal numbered label where
PREFIX is the class of label and NUM is the number within the class.