Commit 99df2465 by Richard Stallman

(output_function_prologue): Make a probe instruction if NEED_PROBE if nonzero.

From-SVN: r1696
parent 1ad409d2
...@@ -180,6 +180,11 @@ output_function_prologue (stream, size) ...@@ -180,6 +180,11 @@ output_function_prologue (stream, size)
mask &= ~ (1 << (15 - FRAME_POINTER_REGNUM)); mask &= ~ (1 << (15 - FRAME_POINTER_REGNUM));
num_saved_regs--; num_saved_regs--;
} }
#if NEED_PROBE
fprintf (stream, "\ttstl sp@(%d)\n", NEED_PROBE - num_saved_regs * 4);
#endif
if (num_saved_regs <= 2) if (num_saved_regs <= 2)
{ {
/* Store each separately in the same order moveml uses. /* Store each separately in the same order moveml uses.
......
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