From 3cc7f838a3b0f9818914477f32d6602ad715f56e Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 21 Sep 1996 07:07:21 -0400 Subject: [PATCH] (USER_LABEL_PREFIX): Redefine. From-SVN: r12753 --- gcc/config/i386/osfrose.h | 6 ++++++ 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 099c9f07127..05d7a295127 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 48c23aaf5f5..9f08f73f414 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 -- 2.30.2