Merge rev 1.2 (a.out support) into GCC 2.95.2.

This commit is contained in:
David E. O'Brien 1999-11-01 18:56:02 +00:00
parent 3a81009a05
commit 8364821558
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52763

View File

@ -1030,11 +1030,12 @@ assign_stack_temp_for_type (mode, size, keep, type)
So for requests which depended on the rounding of SIZE, we go ahead
and round it now. We also make sure ALIGNMENT is at least
BIGGEST_ALIGNMENT. */
if (mode == BLKmode && align < (BIGGEST_ALIGNMENT / BITS_PER_UNIT))
if (mode == BLKmode && align < BIGGEST_ALIGNMENT)
abort();
p->slot = assign_stack_local (mode,
mode == BLKmode
? CEIL_ROUND (size, align) : size,
(mode == BLKmode
? CEIL_ROUND (size, align / BITS_PER_UNIT)
: size),
align);
p->align = align;