(allocate_dynamic_stack_space): Correct typo in last change.

From-SVN: r9302
This commit is contained in:
Jim Wilson 1995-04-03 15:08:08 -07:00
parent 9a4bdb8649
commit 96ec484f7a
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ allocate_dynamic_stack_space (size, target, known_align)
/* If we added a variable amount to SIZE,
we can no longer assume it is aligned. */
#if !defined (SETJMP_VIA_SAVE_AREA)
if (! MUST_ALIGN && known_align % STACK_BOUNDARY != 0)
if (MUST_ALIGN || known_align % STACK_BOUNDARY != 0)
#endif
size = round_push (size);
#endif