mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-09 19:37:29 +08:00
varasm.c (assemble_integer): Bound alignment check by BIGGEST_ALIGNMENT.
* varasm.c (assemble_integer): Bound alignment check by BIGGEST_ALIGNMENT. From-SVN: r45871
This commit is contained in:
parent
a3623c481c
commit
410ad07752
@ -1,5 +1,8 @@
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user