diff options
author | Nick Clifton <nickc@redhat.com> | 2002-12-03 18:24:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-12-03 18:24:33 +0000 |
commit | e1a9cb8e15a2f05592910ee3e27dacf7fbee68b0 (patch) | |
tree | c4886077fcbfbe0e648140c236aa9ffa1c40b817 /gas | |
parent | a823923bf657b448ef2ef71ab7b8fad2f31cd818 (diff) | |
download | gdb-e1a9cb8e15a2f05592910ee3e27dacf7fbee68b0.zip gdb-e1a9cb8e15a2f05592910ee3e27dacf7fbee68b0.tar.gz gdb-e1a9cb8e15a2f05592910ee3e27dacf7fbee68b0.tar.bz2 |
Fix the merging of .PPC.EMB.apuinfo sections. Add a test to make sure that
the fix continues to work.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d891166..5c59ad5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-12-03 Nick Clifton <nickc@redhat.com> + + * config/tc-ppc.c (ppc_cleanup): Do not set SEC_MERGE flag on + .PPC.EMB>apuinfo sections. + 2002-12-03 Richard Henderson <rth@redhat.com> * config/tc-ia64.c (operand_match): Add IA64_OPND_LDXMOV case. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 04fae38..ba058f6 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -1330,7 +1330,7 @@ ppc_cleanup () apuinfo_secp = subseg_new (".PPC.EMB.apuinfo", 0); bfd_set_section_flags (stdoutput, apuinfo_secp, - SEC_HAS_CONTENTS | SEC_READONLY | SEC_MERGE); + SEC_HAS_CONTENTS | SEC_READONLY); p = frag_more (4); md_number_to_chars (p, (valueT) 8, 4); |