aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-09-12 23:45:03 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-09-12 23:45:03 +0000
commit2e53734e19bedbe85a7438d59e5024815228065c (patch)
treeff3eaf1093ad1d02f6ef085641067e3d820d7416 /gcc
parentedeb387130d1abc819b23390bc95595c65cea879 (diff)
downloadgcc-2e53734e19bedbe85a7438d59e5024815228065c.zip
gcc-2e53734e19bedbe85a7438d59e5024815228065c.tar.gz
gcc-2e53734e19bedbe85a7438d59e5024815228065c.tar.bz2
darwin.c (machopic_select_rtx_section): Use const_data_section for things that might require relocation.
* config/darwin.c (machopic_select_rtx_section): Use const_data_section for things that might require relocation. From-SVN: r71345
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/darwin.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 29d7b16..42753bb 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-12 Geoffrey Keating <geoffk@apple.com>
+
+ * config/darwin.c (machopic_select_rtx_section): Use
+ const_data_section for things that might require relocation.
+
2003-09-12 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/12264
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c
index 4c019c7..695ec69 100644
--- a/gcc/config/darwin.c
+++ b/gcc/config/darwin.c
@@ -1242,6 +1242,11 @@ machopic_select_rtx_section (enum machine_mode mode, rtx x,
&& (GET_CODE (x) == CONST_INT
|| GET_CODE (x) == CONST_DOUBLE))
literal4_section ();
+ else if (! MACHO_DYNAMIC_NO_PIC_P
+ && (GET_CODE (x) == SYMBOL_REF
+ || GET_CODE (x) == CONST
+ || GET_CODE (x) == LABEL_REF))
+ const_data_section ();
else
const_section ();
}