Commit a4ea1723 by Bernd Edlinger Committed by Bernd Edlinger

mips.c (mips_compute_frame_info): Skip re-computing the frame info after reload completed.

        * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
        the frame info after reload completed.

From-SVN: r232803
parent 2c89b952
2016-01-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
* config/mips/mips.c (mips_compute_frame_info): Skip re-computing
the frame info after reload completed.
2016-01-25 Jeff Law <law@redhat.com> 2016-01-25 Jeff Law <law@redhat.com>
PR tree-optimization/69196 PR tree-optimization/69196
......
...@@ -10321,6 +10321,10 @@ mips_compute_frame_info (void) ...@@ -10321,6 +10321,10 @@ mips_compute_frame_info (void)
HOST_WIDE_INT offset, size; HOST_WIDE_INT offset, size;
unsigned int regno, i; unsigned int regno, i;
/* Skip re-computing the frame info after reload completed. */
if (reload_completed)
return;
/* Set this function's interrupt properties. */ /* Set this function's interrupt properties. */
if (mips_interrupt_type_p (TREE_TYPE (current_function_decl))) if (mips_interrupt_type_p (TREE_TYPE (current_function_decl)))
{ {
......
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