Commit 5f677a9e by Jan Hubicka Committed by Jan Hubicka

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
parent 1f4cb92b
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.
......
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment