From: Nick Clifton Date: Thu, 27 Nov 2003 08:29:29 +0000 (+0000) Subject: Check for alignment when emitting constants on the sh-elf target X-Git-Tag: cagney_bigcore-20040122-branchpoint~654 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=028f09bd7fce4f25e970a0e006f9241bb055f80b;p=external%2Fbinutils.git Check for alignment when emitting constants on the sh-elf target --- diff --git a/gas/ChangeLog b/gas/ChangeLog index a5c7f40..aaf8b96 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2003-11-27 Nick Clifton + + * config/tc-sh.c (sh_elf_cons): If md_cons_align is defined + call it to make sure that the constants that are going to be + emitted are correctly aligned. + 2003-11-27 Alexandre Oliva * config/tc-frv.c (md_pcrel_from_section): Don't adjust when diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 0bacdce..c499491 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -801,6 +801,10 @@ sh_elf_cons (register int nbytes) return; } +#ifdef md_cons_align + md_cons_align (nbytes); +#endif + do { expression (&exp);