Commit 6110c44a by Kai Tietz Committed by Kai Tietz

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
parent e73caa00
2008-05-21 Kai Tietz <kai.tietz@onevision.com>
PR/36280
* config/i386/cygming.h (ASM_OUTPUT_LABELREF): Honor
option -f(no-)leading-underscore.
2008-05-21 H.J. Lu <hongjiu.lu@intel.com> 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (ix86_expand_vector_init_general): Use * config/i386/i386.c (ix86_expand_vector_init_general): Use
......
...@@ -199,12 +199,12 @@ do { \ ...@@ -199,12 +199,12 @@ do { \
/* Output a reference to a label. Fastcall function symbols /* Output a reference to a label. Fastcall function symbols
keep their '@' prefix, while other symbols are prefixed keep their '@' prefix, while other symbols are prefixed
with USER_LABEL_PREFIX. */ with user_label_prefix. */
#undef ASM_OUTPUT_LABELREF #undef ASM_OUTPUT_LABELREF
#define ASM_OUTPUT_LABELREF(STREAM, NAME) \ #define ASM_OUTPUT_LABELREF(STREAM, NAME) \
do { \ do { \
if ((NAME)[0] != FASTCALL_PREFIX) \ if ((NAME)[0] != FASTCALL_PREFIX) \
fputs (USER_LABEL_PREFIX, (STREAM)); \ fputs (user_label_prefix, (STREAM)); \
fputs ((NAME), (STREAM)); \ fputs ((NAME), (STREAM)); \
} while (0) } while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment