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/i386/lynx.h | |
parent | bc9b7c0d40aae12772ec66db9ebafff8e414eff6 (diff) | |
download | gcc-66dae8927cfd8c7e37c6c80133b1be0f0dc4f675.zip gcc-66dae8927cfd8c7e37c6c80133b1be0f0dc4f675.tar.gz gcc-66dae8927cfd8c7e37c6c80133b1be0f0dc4f675.tar.bz2 |
(USER_LABEL_PREFIX): Redefine, not ASM_OUTPUT_LABELREF.
From-SVN: r12752
Diffstat (limited to 'gcc/config/i386/lynx.h')
-rw-r--r-- | gcc/config/i386/lynx.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/i386/lynx.h b/gcc/config/i386/lynx.h index 4ac00a0..73111f9 100644 --- a/gcc/config/i386/lynx.h +++ b/gcc/config/i386/lynx.h @@ -1,5 +1,5 @@ /* Definitions for Intel 386 running LynxOS. - Copyright (C) 1993, 1995 Free Software Foundation, Inc. + Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -24,12 +24,12 @@ Boston, MA 02111-1307, USA. */ #undef CPP_PREDEFINES #define CPP_PREDEFINES "-Dunix -Di386 -DI386 -DLynx -DIBITS32 -Asystem(unix) -Asystem(lynx) -Acpu(i386) -Amachine(i386)" -/* This is how to output a reference to a user-level label named NAME. */ +/* The prefix to add to user-visible assembler symbols. */ /* Override the svr3 convention of adding a leading underscore. */ -#undef ASM_OUTPUT_LABELREF -#define ASM_OUTPUT_LABELREF(FILE,NAME) fprintf (FILE, "%s", NAME) +#undef USER_LABEL_PREFIX +#define USER_LABEL_PREFIX "" /* Apparently LynxOS clobbers ebx when you call into the OS. */ |