diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 1341c14..3ed2270 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -369,7 +369,7 @@ align_local_variable (tree decl) else { align = LOCAL_DECL_ALIGNMENT (decl); - DECL_ALIGN (decl) = align; + SET_DECL_ALIGN (decl, align); } return align / BITS_PER_UNIT; } @@ -1018,7 +1018,7 @@ expand_one_stack_var_at (tree decl, rtx base, unsigned base_align, alignment here, but (at least) the i386 port does exactly this via the MINIMUM_ALIGNMENT hook. */ - DECL_ALIGN (decl) = align; + SET_DECL_ALIGN (decl, align); DECL_USER_ALIGN (decl) = 0; } |