OSDN Git Service

* config/darwin.c (machopic_select_rtx_section): Use
authorgeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 12 Sep 2003 23:45:03 +0000 (23:45 +0000)
committergeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 12 Sep 2003 23:45:03 +0000 (23:45 +0000)
const_data_section for things that might require relocation.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71345 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/darwin.c

index 29d7b16..42753bb 100644 (file)
@@ -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
index 4c019c7..695ec69 100644 (file)
@@ -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 ();
 }