From 56f1f5ae6a54302d589a602fc808909968c10569 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 20 Oct 2001 09:15:52 -0400 Subject: [PATCH] emit-rtl.c (set_mem_attributes): Alignment is in bits. * emit-rtl.c (set_mem_attributes): Alignment is in bits. (adjust_address_1, offset_address): Likewise. From-SVN: r46379 --- gcc/emit-rtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 82f37b61396..eb71518ead6 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1713,7 +1713,7 @@ set_mem_attributes (ref, t, objectp) (TYPE_SIZE_UNIT (TREE_TYPE (t)) && host_integerp (TYPE_SIZE_UNIT (TREE_TYPE (t)), 1)) ? GEN_INT (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (t)), 1)) - : 0, DECL_ALIGN (t) / BITS_PER_UNIT); + : 0, DECL_ALIGN (t)); /* If this is an INDIRECT_REF, we know its alignment. */ if (TREE_CODE (t) == INDIRECT_REF)