Commit bfc965cf by Jim Wilson

(output_function_profiler): Add missing newlines in strings.

From-SVN: r4317
parent 4851a75c
......@@ -1193,7 +1193,7 @@ output_function_profiler (file, labelno)
set it to zero. */
if (current_function_args_size != 0)
fprintf (file, "\tmov g14,r3\n\tmov 0,g14");
fprintf (file, "\tmov g14,r3\n\tmov 0,g14\n");
/* Load location address into g0 and call mcount. */
......@@ -1202,7 +1202,7 @@ output_function_profiler (file, labelno)
/* If this function uses the arg pointer, restore it. */
if (current_function_args_size != 0)
fprintf (file, "\tmov r3,g14");
fprintf (file, "\tmov r3,g14\n");
/* Restore parameter registers. */
......
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