i386.md (ix86_compute_frame_size): stack_alignment_needed is STACK_BOUNDARY for empty frames now.

* i386.md (ix86_compute_frame_size): stack_alignment_needed is
	STACK_BOUNDARY for empty frames now.

From-SVN: r32559
This commit is contained in:
Jan Hubicka 2000-03-15 13:10:59 +01:00 committed by Jan Hubicka
parent 1f4cb92b42
commit 5f677a9ee7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Mar 15 13:07:05 MET 2000 Jan Hubicka <jh@suse.cz>
* i386.md (ix86_compute_frame_size): stack_alignment_needed is
STACK_BOUNDARY for empty frames now.
2000-03-14 Mark Mitchell <mark@codesourcery.com>
* stor-layout.c (layout_union): Remove.

View File

@ -1784,7 +1784,7 @@ ix86_compute_frame_size (size, nregs_on_stack, rpadding1, rpadding2)
if (size && !stack_alignment_needed)
abort ();
if (!size && stack_alignment_needed)
if (!size && stack_alignment_needed != STACK_BOUNDARY / BITS_PER_UNIT)
abort ();
if (preferred_alignment < STACK_BOUNDARY / BITS_PER_UNIT)
abort ();