(expand_computed_goto): Call do_pending_stack_adjust.

From-SVN: r9828
This commit is contained in:
Richard Kenner 1995-05-28 18:33:50 -04:00
parent 134843a925
commit ffa1a1ce4f
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}
}