Commit ff91ad08 by Richard Kenner

(expand_decl): Don't deduce alignment of SIZE from DECL_ALIGN; use

TYPE_ALIGN instead.

From-SVN: r11949
parent d1b680c6
......@@ -3463,9 +3463,12 @@ expand_decl (decl)
NULL_RTX, VOIDmode, 0);
free_temp_slots ();
/* Allocate space on the stack for the variable. */
/* Allocate space on the stack for the variable. Note that
DECL_ALIGN says how the variable is to be aligned and we
cannot use it to conclude anything about the alignment of
the size. */
address = allocate_dynamic_stack_space (size, NULL_RTX,
DECL_ALIGN (decl));
TYPE_ALIGN (TREE_TYPE (decl)));
/* Reference the variable indirect through that rtx. */
DECL_RTL (decl) = gen_rtx (MEM, DECL_MODE (decl), address);
......
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