summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-12 17:47:39 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-12 17:47:39 +0000
commitf5d9353e41cd14f0e5fbb101ca48182433d7ed30 (patch)
tree61fc06c4a3e331986b522a5c9e76491fc135ec60
parent60bd8f1639f043b0d18124fb9b4e39ac506ebcdb (diff)
downloadppe42-gcc-f5d9353e41cd14f0e5fbb101ca48182433d7ed30.tar.gz
ppe42-gcc-f5d9353e41cd14f0e5fbb101ca48182433d7ed30.zip
* config/rs6000/rs6000.c (rs6000_elf_section_type_flags): Fix
thinko wrt TARGET_RELOCATABLE. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44832 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/rs6000/rs6000.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9ed2dfdb2b3..ccdd136c921 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-12 Richard Henderson <rth@redhat.com>
+
+ * config/rs6000/rs6000.c (rs6000_elf_section_type_flags): Fix
+ thinko wrt TARGET_RELOCATABLE.
+
2001-08-12 Neil Booth <neil@daikokuya.demon.co.uk>
* fix-header.c (cb_file_change): Update prototype.
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 783f8e16aad..924c2445ef0 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -8699,10 +8699,8 @@ rs6000_elf_section_type_flags (decl, name, reloc)
{
unsigned int flags = default_section_type_flags (decl, name, reloc);
- /* ??? The flag_pic check appears redundant with the DECL_READONLY_SECTION
- check in default_section_type_flags. */
- if (TARGET_RELOCATABLE || flag_pic)
- flags &= ~SECTION_WRITE;
+ if (TARGET_RELOCATABLE)
+ flags |= SECTION_WRITE;
/* Solaris doesn't like @nobits, and gas can handle .sbss without it. */
flags &= ~SECTION_BSS;
OpenPOWER on IntegriCloud