Commit ffa1a1ce by Richard Kenner

(expand_computed_goto): Call do_pending_stack_adjust.

From-SVN: r9828
parent 134843a9
......@@ -609,11 +609,13 @@ expand_computed_goto (exp)
else
{
rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
emit_queue ();
#ifdef POINTERS_EXTEND_UNSIGNED
x = convert_memory_address (Pmode, x);
#endif
emit_queue ();
do_pending_stack_adjust ();
emit_indirect_jump (x);
}
}
......
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