Commit 410ad077 by Richard Henderson Committed by Richard Henderson

varasm.c (assemble_integer): Bound alignment check by BIGGEST_ALIGNMENT.

        * varasm.c (assemble_integer): Bound alignment check by
        BIGGEST_ALIGNMENT.

From-SVN: r45871
parent a3623c48
2001-09-28 Richard Henderson <rth@redhat.com>
* varasm.c (assemble_integer): Bound alignment check by
BIGGEST_ALIGNMENT.
* cfgrtl.c (redirect_edge_and_branch): Abort if redirect_jump fails.
2001-09-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
......
......@@ -1913,7 +1913,7 @@ assemble_integer (x, size, align, force)
/* First try to use the standard 1, 2, 4, 8, and 16 byte
ASM_OUTPUT... macros. */
if (align >= size * BITS_PER_UNIT)
if (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT))
switch (size)
{
#ifdef ASM_OUTPUT_CHAR
......
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