Commit 4b3fa92c by Walter Lee Committed by Walter Lee

Fix a typo in the mcount function_profiler.

	* config/tilegx/tilegx.c (tilegx_function_profiler): Fix typo.
	config/tilepro/tilepro.c (tilepro_function_profiler): Ditto.

From-SVN: r190726
parent 848c312c
2012-08-27 Walter Lee <walt@tilera.com> 2012-08-27 Walter Lee <walt@tilera.com>
* config/tilegx/tilegx.c (tilegx_function_profiler): Fix typo.
config/tilepro/tilepro.c (tilepro_function_profiler): Ditto.
2012-08-27 Walter Lee <walt@tilera.com>
* config/tilegx/tilegx.md (*bfins): Rename to insn_bfins. * config/tilegx/tilegx.md (*bfins): Rename to insn_bfins.
(insn_bfins): Delete. (insn_bfins): Delete.
......
...@@ -5313,7 +5313,7 @@ tilegx_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED) ...@@ -5313,7 +5313,7 @@ tilegx_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED)
fprintf (file, fprintf (file,
"\t{\n" "\t{\n"
"\tmove\tr10, lr\n" "\tmove\tr10, lr\n"
"\tjal\t%s@plt\n" "\tjal\tplt(%s)\n"
"\t}\n", MCOUNT_NAME); "\t}\n", MCOUNT_NAME);
} }
else else
......
...@@ -4914,7 +4914,7 @@ tilepro_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED) ...@@ -4914,7 +4914,7 @@ tilepro_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED)
fprintf (file, fprintf (file,
"\t{\n" "\t{\n"
"\tmove\tr10, lr\n" "\tmove\tr10, lr\n"
"\tjal\t%s@plt\n" "\tjal\tplt(%s)\n"
"\t}\n", MCOUNT_NAME); "\t}\n", MCOUNT_NAME);
} }
else else
......
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