diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-03 22:08:08 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-03 22:08:08 +0000 |
commit | 5881c9e977f1476e2a74086c1bcd262381eb3d37 (patch) | |
tree | fe348ea5a73d530f7a74fdb75989fbb5d6d57e85 /gcc/explow.c | |
parent | 365e7120bf33ca2dbb10c1d658ab0ded55b741dd (diff) | |
download | gcc-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.c | 2 |
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 |