diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/dist/gcc/config/mips/mips.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/dist/gcc/config/mips/mips.h b/gnu/dist/gcc/config/mips/mips.h index 27256e5919c..ff61c9b5638 100644 --- a/gnu/dist/gcc/config/mips/mips.h +++ b/gnu/dist/gcc/config/mips/mips.h @@ -2519,13 +2519,14 @@ typedef struct mips_args { fprintf (FILE, "\t.set\tnoat\n"); \ fprintf (FILE, "\tmove\t%s,%s\t\t# save current return address\n", \ reg_names[GP_REG_FIRST + 1], reg_names[GP_REG_FIRST + 31]); \ - fprintf (FILE, "\tjal\t_mcount\n"); \ fprintf (FILE, \ "\t%s\t%s,%s,%d\t\t# _mcount pops 2 words from stack\n", \ TARGET_64BIT ? "dsubu" : "subu", \ reg_names[STACK_POINTER_REGNUM], \ reg_names[STACK_POINTER_REGNUM], \ Pmode == DImode ? 16 : 8); \ + fprintf (FILE, "\tjal\t_mcount\n"); \ + fprintf (FILE, "\tnop\n"); \ fprintf (FILE, "\t.set\treorder\n"); \ fprintf (FILE, "\t.set\tat\n"); \ } |
