diff options
Diffstat (limited to 'gnu/usr.bin/gcc/config/i386/bsd.h')
-rw-r--r-- | gnu/usr.bin/gcc/config/i386/bsd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/gcc/config/i386/bsd.h b/gnu/usr.bin/gcc/config/i386/bsd.h index 6bf7399dc31..d50be3664c1 100644 --- a/gnu/usr.bin/gcc/config/i386/bsd.h +++ b/gnu/usr.bin/gcc/config/i386/bsd.h @@ -1,7 +1,7 @@ /* Definitions for BSD assembler syntax for Intel 386 (actually AT&T syntax for insns and operands, adapted to BSD conventions for symbol names and debugging.) - Copyright (C) 1988 Free Software Foundation, Inc. + Copyright (C) 1988, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -115,12 +115,12 @@ Boston, MA 02111-1307, USA. */ fprintf (FILE, "%s%d:\n", PREFIX, NUM) #endif -/* This is how to output a reference to a user-level label named NAME. */ +/* The prefix to add to user-visible assembler symbols. */ #ifdef NO_UNDERSCORES -#define ASM_OUTPUT_LABELREF(FILE,NAME) fprintf (FILE, "%s", NAME) +#define USER_LABEL_PREFIX "" #else -#define ASM_OUTPUT_LABELREF(FILE,NAME) fprintf (FILE, "_%s", NAME) +#define USER_LABEL_PREFIX "_" #endif /* not NO_UNDERSCORES */ /* Sequent has some changes in the format of DBX symbols. */ |