Commit c1a1cc5f by Nick Clifton Committed by Nick Clifton

varasm.c (default_asm_output_anchor): Prepend * to . symbol in order to prevent…

varasm.c (default_asm_output_anchor): Prepend * to . symbol in order to prevent it from being munged by the target.

* varasm.c (default_asm_output_anchor): Prepend * to . symbol in order to 
  prevent it from being munged by the target.

From-SVN: r121992
parent 62e4530b
2007-02-15 Nick Clifton <nickc@redhat.com>
* varasm.c (default_asm_output_anchor): Prepend * to . symbol in
order to prevent it from being munged by the target.
2007-02-15 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.md: Remove misleading comment.
......
......@@ -6098,7 +6098,7 @@ default_asm_output_anchor (rtx symbol)
{
char buffer[100];
sprintf (buffer, ". + " HOST_WIDE_INT_PRINT_DEC,
sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
SYMBOL_REF_BLOCK_OFFSET (symbol));
ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
}
......
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