diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-09-21 10:53:37 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-09-21 10:53:37 +0000 |
commit | bee1420be664b6c1d129b2978fa9e62822e37bf7 (patch) | |
tree | 04bfde498ac0c91dfed02321e9af06ec5aca5795 /gcc/config/fx80 | |
parent | afd6e1ea0592da041341ee1b361375cd79f1dfa9 (diff) | |
download | gcc-bee1420be664b6c1d129b2978fa9e62822e37bf7.tar.gz |
(USER_LABEL_PREFIX): Define instead of ASM_OUTPUT_LABELREF.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12750 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/fx80')
-rw-r--r-- | gcc/config/fx80/fx80.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/config/fx80/fx80.h b/gcc/config/fx80/fx80.h index 59a31084dd6..b56834a372c 100644 --- a/gcc/config/fx80/fx80.h +++ b/gcc/config/fx80/fx80.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler. Alliant FX version. - Copyright (C) 1989, 1993, 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1989, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. Adapted from m68k.h by Paul Petersen (petersen@uicsrd.csrd.uiuc.edu) and Joe Weening (weening@gang-of-four.stanford.edu). @@ -1063,11 +1063,9 @@ extern enum reg_class regno_reg_class[]; #define ASM_GLOBALIZE_LABEL(FILE,NAME) \ do { fputs ("\t.globl ", FILE); assemble_name (FILE, NAME); fputs ("\n", FILE);} while (0) -/* This is how to output a reference to a user-level label named NAME. - `assemble_name' uses this. */ +/* The prefix to add to user-visible assembler symbols. */ -#define ASM_OUTPUT_LABELREF(FILE,NAME) \ - fprintf (FILE, "_%s", NAME) +#define USER_LABEL_PREFIX "_" /* This is how to output an internal numbered label where PREFIX is the class of label and NUM is the number within the class. */ |