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/config/tc-ppc.c | |
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/config/tc-ppc.c')
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |