diff options
author | Walter Lee <walt@tilera.com> | 2012-08-27 18:35:39 +0000 |
---|---|---|
committer | Walter Lee <walt@gcc.gnu.org> | 2012-08-27 18:35:39 +0000 |
commit | 4b3fa92c24ca9d75140a50cbddacee9ed0b1adfa (patch) | |
tree | f91061fe74bfc61e12f093591f1f18b73e2bbef2 /gcc | |
parent | 848c312caba3183723c79f0bb89473996da33a17 (diff) | |
download | gcc-4b3fa92c24ca9d75140a50cbddacee9ed0b1adfa.zip gcc-4b3fa92c24ca9d75140a50cbddacee9ed0b1adfa.tar.gz gcc-4b3fa92c24ca9d75140a50cbddacee9ed0b1adfa.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/tilegx/tilegx.c | 2 | ||||
-rw-r--r-- | gcc/config/tilepro/tilepro.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 717df46..b54ee52 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,9 @@ 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. (insn_bfins): Delete. diff --git a/gcc/config/tilegx/tilegx.c b/gcc/config/tilegx/tilegx.c index 25be300..51f5fb4 100644 --- a/gcc/config/tilegx/tilegx.c +++ b/gcc/config/tilegx/tilegx.c @@ -5313,7 +5313,7 @@ tilegx_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED) fprintf (file, "\t{\n" "\tmove\tr10, lr\n" - "\tjal\t%s@plt\n" + "\tjal\tplt(%s)\n" "\t}\n", MCOUNT_NAME); } else diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c index 10bf702..3f336e4 100644 --- a/gcc/config/tilepro/tilepro.c +++ b/gcc/config/tilepro/tilepro.c @@ -4914,7 +4914,7 @@ tilepro_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED) fprintf (file, "\t{\n" "\tmove\tr10, lr\n" - "\tjal\t%s@plt\n" + "\tjal\tplt(%s)\n" "\t}\n", MCOUNT_NAME); } else |