Commit 96ec484f by Jim Wilson

(allocate_dynamic_stack_space): Correct typo in last change.

From-SVN: r9302
parent 9a4bdb86
...@@ -999,7 +999,7 @@ allocate_dynamic_stack_space (size, target, known_align) ...@@ -999,7 +999,7 @@ allocate_dynamic_stack_space (size, target, known_align)
/* If we added a variable amount to SIZE, /* If we added a variable amount to SIZE,
we can no longer assume it is aligned. */ we can no longer assume it is aligned. */
#if !defined (SETJMP_VIA_SAVE_AREA) #if !defined (SETJMP_VIA_SAVE_AREA)
if (! MUST_ALIGN && known_align % STACK_BOUNDARY != 0) if (MUST_ALIGN || known_align % STACK_BOUNDARY != 0)
#endif #endif
size = round_push (size); size = round_push (size);
#endif #endif
......
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