diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-21 07:05:59 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-21 07:05:59 -0400 |
commit | 66dae8927cfd8c7e37c6c80133b1be0f0dc4f675 (patch) | |
tree | cb1b380b97b2b527298ca3a4d13faafb28ee3a05 /gcc/config/ptx4.h | |
parent | bc9b7c0d40aae12772ec66db9ebafff8e414eff6 (diff) | |
download | gcc-66dae8927cfd8c7e37c6c80133b1be0f0dc4f675.tar.gz |
(USER_LABEL_PREFIX): Redefine, not ASM_OUTPUT_LABELREF.
From-SVN: r12752
Diffstat (limited to 'gcc/config/ptx4.h')
-rw-r--r-- | gcc/config/ptx4.h | 9 |
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. |