diff options
Diffstat (limited to 'gcc/config/mips/mips.c')
-rw-r--r-- | gcc/config/mips/mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 5ac7be10fe1..483cc23b8ae 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -9548,7 +9548,7 @@ mips_output_conditional_branch (insn, would otherwise; that way we skip the annulled instruction in the delay slot. */ - const char *target + const char *const target = ((mips_branch_likely || length == 16) ? ".+16" : ".+12"); char *c; @@ -9625,7 +9625,7 @@ mips_output_conditional_branch (insn, anything. */ /* The target of the reversed branch. */ - const char *target + const char *const target = ((mips_branch_likely || length == 20) ? ".+20" : ".+16"); const char *at_register = mips_reg_names[ASSEMBLER_SCRATCH_REGNUM]; const char *gp_register = mips_reg_names[PIC_OFFSET_TABLE_REGNUM]; |