Commit c870c233 by Richard Sandiford Committed by Richard Sandiford

mips.c (mips_restore_gp_from_cprestore_slot): Emit a note when expanding to nothing.

gcc/
	* config/mips/mips.c (mips_restore_gp_from_cprestore_slot): Emit
	a note when expanding to nothing.

From-SVN: r153540
parent 22dfb60e
2009-10-25 Richard Sandiford <rdsandiford@googlemail.com>
* config/mips/mips.c (mips_restore_gp_from_cprestore_slot): Emit
a note when expanding to nothing.
2009-10-25 Richard Guenther <rguenther@suse.de> 2009-10-25 Richard Guenther <rguenther@suse.de>
PR middle-end/41814 PR middle-end/41814
...@@ -9537,7 +9537,10 @@ mips_restore_gp_from_cprestore_slot (rtx temp) ...@@ -9537,7 +9537,10 @@ mips_restore_gp_from_cprestore_slot (rtx temp)
gcc_assert (TARGET_ABICALLS && TARGET_OLDABI && epilogue_completed); gcc_assert (TARGET_ABICALLS && TARGET_OLDABI && epilogue_completed);
if (!cfun->machine->must_restore_gp_when_clobbered_p) if (!cfun->machine->must_restore_gp_when_clobbered_p)
return; {
emit_note (NOTE_INSN_DELETED);
return;
}
if (TARGET_MIPS16) if (TARGET_MIPS16)
{ {
......
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