Commit c461a957 by Eric Botcazou Committed by Eric Botcazou

* config/rs6000/rs6000.c (output_profile_hook): Fix thinko.

From-SVN: r173547
parent a9bcb3f0
2011-05-08 Eric Botcazou <ebotcazou@adacore.com>
* config/rs6000/rs6000.c (output_profile_hook): Fix thinko.
2011-05-08 Jonathan Wakely <jwakely.gcc@gmail.com> 2011-05-08 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/invoke.texi (-fuse-linker-plugin): Improve grammar. * doc/invoke.texi (-fuse-linker-plugin): Improve grammar.
......
...@@ -22879,7 +22879,7 @@ output_profile_hook (int labelno ATTRIBUTE_UNUSED) ...@@ -22879,7 +22879,7 @@ output_profile_hook (int labelno ATTRIBUTE_UNUSED)
rtx fun; rtx fun;
ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno); ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
label_name = (*targetm.strip_name_encoding) (ggc_strdup (buf)); label_name = ggc_strdup ((*targetm.strip_name_encoding) (buf));
fun = gen_rtx_SYMBOL_REF (Pmode, label_name); fun = gen_rtx_SYMBOL_REF (Pmode, label_name);
emit_library_call (init_one_libfunc (RS6000_MCOUNT), emit_library_call (init_one_libfunc (RS6000_MCOUNT),
......
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