Commit 3cc7f838 by Richard Kenner

(USER_LABEL_PREFIX): Redefine.

From-SVN: r12753
parent 66dae892
...@@ -364,6 +364,12 @@ while (0) ...@@ -364,6 +364,12 @@ while (0)
fprintf (FILE, "%s%s%d:\n", (TARGET_UNDERSCORES) ? "" : ".", \ fprintf (FILE, "%s%s%d:\n", (TARGET_UNDERSCORES) ? "" : ".", \
PREFIX, NUM) PREFIX, NUM)
/* The prefix to add to user-visible assembler symbols. */
/* target_flags is not accessible by the preprocessor */
#undef USER_LABEL_PREFIX
#define USER_LABEL_PREFIX "_"
/* This is how to output a reference to a user-level label named NAME. */ /* This is how to output a reference to a user-level label named NAME. */
#undef ASM_OUTPUT_LABELREF #undef ASM_OUTPUT_LABELREF
......
/* Definitions of target machine for GNU compiler for /* Definitions of target machine for GNU compiler for
Motorola m88100 in an 88open OCS/BCS environment. Motorola m88100 in an 88open OCS/BCS environment.
Copyright (C) 1988, 92, 93, 94, 95, 1996 Free Software Foundation, Inc. Copyright (C) 1988, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@cygnus.com) Contributed by Michael Tiemann (tiemann@cygnus.com).
Currently maintained by (gcc@dg-rtp.dg.com) Currently maintained by (gcc@dg-rtp.dg.com)
This file is part of GNU CC. This file is part of GNU CC.
...@@ -198,13 +198,13 @@ extern char * reg_names[]; ...@@ -198,13 +198,13 @@ extern char * reg_names[];
Redefined in sysv4.h, and luna.h. */ Redefined in sysv4.h, and luna.h. */
#define VERSION_INFO1 "m88k, " #define VERSION_INFO1 "m88k, "
#ifndef VERSION_INFO2 #ifndef VERSION_INFO2
#define VERSION_INFO2 "$Revision: 1.69 $" #define VERSION_INFO2 "$Revision: 1.70 $"
#endif #endif
#ifndef VERSION_STRING #ifndef VERSION_STRING
#define VERSION_STRING version_string #define VERSION_STRING version_string
#ifdef __STDC__ #ifdef __STDC__
#define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.69 $ " __DATE__ #define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.70 $ " __DATE__
#else #else
#define TM_RCS_ID "$What: <@(#) m88k.h,v 1.1.1.2.2.2> $" #define TM_RCS_ID "$What: <@(#) m88k.h,v 1.1.1.2.2.2> $"
#endif /* __STDC__ */ #endif /* __STDC__ */
...@@ -2037,6 +2037,11 @@ do { \ ...@@ -2037,6 +2037,11 @@ do { \
putc ('\n', FILE); \ putc ('\n', FILE); \
} while (0) } while (0)
/* The prefix to add to user-visible assembler symbols.
Override svr[34].h. */
#undef USER_LABEL_PREFIX
#define USER_LABEL_PREFIX "_"
/* This is how to output a reference to a user-level label named NAME. /* This is how to output a reference to a user-level label named NAME.
Override svr[34].h. */ Override svr[34].h. */
#undef ASM_OUTPUT_LABELREF #undef ASM_OUTPUT_LABELREF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment