Commit 33561817 by Nick Clifton Committed by Nick Clifton

mn10300.h (USER_LABEL_PREFIX): Define.

        * config/mn10300/mn10300.h (USER_LABEL_PREFIX): Define.
        (ASM_OUTPUT_LABELREF): Use asm_fprintf and %U.

From-SVN: r152398
parent 63ffc486
2009-10-02 Nick Clifton <nickc@redhat.com>
* config/mn10300/mn10300.h (USER_LABEL_PREFIX): Define.
(ASM_OUTPUT_LABELREF): Use asm_fprintf and %U.
2009-10-01 Jan Hubicka <jh@suse.cz>
* cgraph.c (cgraph_clone_node): Add redirect_callers parameter.
......@@ -759,6 +759,9 @@ struct cum_arg {int nbytes; };
#define ASM_APP_OFF "#NO_APP\n"
#undef USER_LABEL_PREFIX
#define USER_LABEL_PREFIX "_"
/* This says how to output the assembler to define a global
uninitialized but not common symbol.
Try to use asm_output_bss to implement this macro. */
......@@ -774,7 +777,7 @@ struct cum_arg {int nbytes; };
#undef ASM_OUTPUT_LABELREF
#define ASM_OUTPUT_LABELREF(FILE, NAME) \
fprintf (FILE, "_%s", (*targetm.strip_name_encoding) (NAME))
asm_fprintf (FILE, "%U%s", (*targetm.strip_name_encoding) (NAME))
#define ASM_PN_FORMAT "%s___%lu"
......
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