OSDN Git Service

(allocate_dynamic_stack_space): Correct typo in last change.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Apr 1995 22:08:08 +0000 (22:08 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Apr 1995 22:08:08 +0000 (22:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9302 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/explow.c

index 814633c..e6dc5f9 100644 (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