Commit 983e6484 by Paul Brook Committed by Paul Brook

* config/arm/arm.c (thumb_expand_prologue): Tie prologue insns to fp.

From-SVN: r79496
parent e6f69614
2004-03-15 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (thumb_expand_prologue): Tie prologue insns to fp.
2004-03-15 Gabriel Dos Reis <gdr@integrable-solutions.net>
* c-pretty-print.c (pp_c_semicolon): Fix formatting.
......
......@@ -13110,6 +13110,12 @@ thumb_expand_prologue (void)
REG_NOTES (insn));
}
}
/* If the frame pointer is needed, emit a special barrier that
will prevent the scheduler from moving stores to the frame
before the stack adjustment. */
if (frame_pointer_needed)
emit_insn (gen_stack_tie (stack_pointer_rtx,
hard_frame_pointer_rtx));
}
if (current_function_profile || TARGET_NO_SCHED_PRO)
......
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