diff options
author | Kim Knuttila <krk@cygnus> | 1996-01-18 23:03:48 +0000 |
---|---|---|
committer | Kim Knuttila <krk@cygnus> | 1996-01-18 23:03:48 +0000 |
commit | 0291f0f54389fab7513b03f358fdc2e1be54fa2f (patch) | |
tree | d6d76dafa2f08376001d0d2da98ee6d73d769095 /gas/config | |
parent | 00d6548424ac705d7281c7c38ffb05385436d850 (diff) | |
download | gdb-0291f0f54389fab7513b03f358fdc2e1be54fa2f.zip gdb-0291f0f54389fab7513b03f358fdc2e1be54fa2f.tar.gz gdb-0291f0f54389fab7513b03f358fdc2e1be54fa2f.tar.bz2 |
Changed alignment on .pdata and .reldata
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-ppc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 5a25de3..8044b3b 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -2871,7 +2871,7 @@ ppc_pdata(ignore) (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY | SEC_DATA )); - bfd_set_section_alignment (stdoutput, pdata_section, 3); + bfd_set_section_alignment (stdoutput, pdata_section, 2); } else { @@ -2943,7 +2943,7 @@ ppc_reldata(ignore) ( SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA )); - bfd_set_section_alignment (stdoutput, reldata_section, 3); + bfd_set_section_alignment (stdoutput, reldata_section, 2); } else { |