summaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1995-04-03 22:08:08 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1995-04-03 22:08:08 +0000
commit5881c9e977f1476e2a74086c1bcd262381eb3d37 (patch)
treefe348ea5a73d530f7a74fdb75989fbb5d6d57e85 /gcc/explow.c
parent365e7120bf33ca2dbb10c1d658ab0ded55b741dd (diff)
downloadgcc-5881c9e977f1476e2a74086c1bcd262381eb3d37.tar.gz
(allocate_dynamic_stack_space): Correct typo in last change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9302 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 814633cdcad..e6dc5f96fe1 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -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