diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2008-05-21 19:36:28 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2008-05-21 21:36:28 +0200 |
commit | 6110c44a9732fde36136ca7404eebee9c072c85a (patch) | |
tree | 6706613db71cde4ea49fb1ef6a5a77e856b41907 /gcc/config/i386/cygming.h | |
parent | e73caa00550685794023d65d03ea3833705ba7e8 (diff) | |
download | gcc-6110c44a9732fde36136ca7404eebee9c072c85a.tar.gz |
cygming.h (ASM_OUTPUT_LABELREF): Honor option -f(no-)leading-underscore.
2008-05-21 Kai Tietz <kai.tietz@onevision.com>
PR/36280
* config/i386/cygming.h (ASM_OUTPUT_LABELREF): Honor
option -f(no-)leading-underscore.
From-SVN: r135733
Diffstat (limited to 'gcc/config/i386/cygming.h')
-rw-r--r-- | gcc/config/i386/cygming.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h index a6537bc60d3..bf46cab15f7 100644 --- a/gcc/config/i386/cygming.h +++ b/gcc/config/i386/cygming.h @@ -199,12 +199,12 @@ do { \ /* Output a reference to a label. Fastcall function symbols keep their '@' prefix, while other symbols are prefixed - with USER_LABEL_PREFIX. */ + with user_label_prefix. */ #undef ASM_OUTPUT_LABELREF #define ASM_OUTPUT_LABELREF(STREAM, NAME) \ do { \ if ((NAME)[0] != FASTCALL_PREFIX) \ - fputs (USER_LABEL_PREFIX, (STREAM)); \ + fputs (user_label_prefix, (STREAM)); \ fputs ((NAME), (STREAM)); \ } while (0) |