diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-04-03 15:08:08 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-04-03 15:08:08 -0700 |
commit | 96ec484f7a846bd57b6fa5a5c230b863f9a5aeb3 (patch) | |
tree | fe348ea5a73d530f7a74fdb75989fbb5d6d57e85 /gcc | |
parent | 9a4bdb86498b8c974e66198c0126ccfbccfee086 (diff) | |
download | gcc-96ec484f7a846bd57b6fa5a5c230b863f9a5aeb3.zip gcc-96ec484f7a846bd57b6fa5a5c230b863f9a5aeb3.tar.gz gcc-96ec484f7a846bd57b6fa5a5c230b863f9a5aeb3.tar.bz2 |
(allocate_dynamic_stack_space): Correct typo in last change.
From-SVN: r9302
Diffstat (limited to 'gcc')
-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 814633c..e6dc5f9 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 |