summaryrefslogtreecommitdiff
path: root/gcc/config/ptx4.h
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-09-21 11:05:59 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-09-21 11:05:59 +0000
commitafbf0a8ceec3914a6efa48369a5ea99f95ea33c1 (patch)
treecb1b380b97b2b527298ca3a4d13faafb28ee3a05 /gcc/config/ptx4.h
parent337e433ad98d926b01cc648b2eb12583347e3331 (diff)
downloadgcc-afbf0a8ceec3914a6efa48369a5ea99f95ea33c1.tar.gz
(USER_LABEL_PREFIX): Redefine, not ASM_OUTPUT_LABELREF.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12752 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ptx4.h')
-rw-r--r--gcc/config/ptx4.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/config/ptx4.h b/gcc/config/ptx4.h
index 41c2706fc85..7bda47c9235 100644
--- a/gcc/config/ptx4.h
+++ b/gcc/config/ptx4.h
@@ -1,7 +1,7 @@
/* Operating system specific defines to be used when targeting GCC for some
generic System V Release 4 system.
Copyright (C) 1996 Free Software Foundation, Inc.
- Contributed by Ron Guilmette (rfg@segfault.us.com).
+ Contributed by Ron Guilmette (rfg@monkeys.com).
Renamed and changed to suit Dynix/ptx v4 and later.
Modified by Tim Wright (timw@sequent.com).
@@ -333,14 +333,13 @@ while (0)
#define ASM_OUTPUT_SKIP(FILE,SIZE) \
fprintf (FILE, "\t%s\t%u\n", SKIP_ASM_OP, (SIZE))
-/* 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 4 the convention is *not* 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.