diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-21 07:07:21 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-21 07:07:21 -0400 |
commit | 3cc7f838a3b0f9818914477f32d6602ad715f56e (patch) | |
tree | 2a7c541c65da8ccfe63f355ce107b4497258f90f | |
parent | 66dae8927cfd8c7e37c6c80133b1be0f0dc4f675 (diff) | |
download | gcc-3cc7f838a3b0f9818914477f32d6602ad715f56e.zip gcc-3cc7f838a3b0f9818914477f32d6602ad715f56e.tar.gz gcc-3cc7f838a3b0f9818914477f32d6602ad715f56e.tar.bz2 |
(USER_LABEL_PREFIX): Redefine.
From-SVN: r12753
-rw-r--r-- | gcc/config/i386/osfrose.h | 6 | ||||
-rw-r--r-- | gcc/config/m88k/m88k.h | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/gcc/config/i386/osfrose.h b/gcc/config/i386/osfrose.h index 099c9f0..05d7a29 100644 --- a/gcc/config/i386/osfrose.h +++ b/gcc/config/i386/osfrose.h @@ -364,6 +364,12 @@ while (0) fprintf (FILE, "%s%s%d:\n", (TARGET_UNDERSCORES) ? "" : ".", \ 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. */ #undef ASM_OUTPUT_LABELREF diff --git a/gcc/config/m88k/m88k.h b/gcc/config/m88k/m88k.h index 48c23aa..9f08f73 100644 --- a/gcc/config/m88k/m88k.h +++ b/gcc/config/m88k/m88k.h @@ -1,7 +1,7 @@ /* Definitions of target machine for GNU compiler for Motorola m88100 in an 88open OCS/BCS environment. 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) This file is part of GNU CC. @@ -198,13 +198,13 @@ extern char * reg_names[]; Redefined in sysv4.h, and luna.h. */ #define VERSION_INFO1 "m88k, " #ifndef VERSION_INFO2 -#define VERSION_INFO2 "$Revision: 1.69 $" +#define VERSION_INFO2 "$Revision: 1.70 $" #endif #ifndef VERSION_STRING #define VERSION_STRING version_string #ifdef __STDC__ -#define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.69 $ " __DATE__ +#define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.70 $ " __DATE__ #else #define TM_RCS_ID "$What: <@(#) m88k.h,v 1.1.1.2.2.2> $" #endif /* __STDC__ */ @@ -2037,6 +2037,11 @@ do { \ putc ('\n', FILE); \ } 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. Override svr[34].h. */ #undef ASM_OUTPUT_LABELREF |