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/romp | |
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/romp')
-rw-r--r-- | gcc/config/romp/romp.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/romp/romp.h b/gcc/config/romp/romp.h index 9fc6a4bfd02..be12d367fbb 100644 --- a/gcc/config/romp/romp.h +++ b/gcc/config/romp/romp.h @@ -1419,11 +1419,9 @@ extern int romp_debugger_arg_correction(); #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. */ |