Commit 14dc9072 by Jeff Law

pa.c (output_function_prologue): Use ASM_GENERATE_INTERNAL_LABEL rather than…

pa.c (output_function_prologue): Use ASM_GENERATE_INTERNAL_LABEL rather than generating one on its own.

        * pa.c (output_function_prologue): Use ASM_GENERATE_INTERNAL_LABEL
        rather than generating one on its own.

From-SVN: r6251
parent dea273df
......@@ -2016,7 +2016,8 @@ output_function_prologue (file, size)
/* Horrid hack. emit_function_prologue will modify this RTL in
place to get the expected results. */
if (profile_flag)
sprintf(hp_profile_label_name, "LP$%04d", hp_profile_labelno);
ASM_GENERATE_INTERNAL_LABEL (hp_profile_label_name, "LP",
hp_profile_labelno);
}
void
......
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