go-backend.c (go_write_export_data): Use EXCLUDE section for AIX.
authorTony Reix <tony.reix@atos.net>
Fri, 28 Jul 2017 00:16:36 +0000 (00:16 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 28 Jul 2017 00:16:36 +0000 (00:16 +0000)
* go-backend.c (go_write_export_data): Use EXCLUDE section for
AIX.

From-SVN: r250648

gcc/go/ChangeLog
gcc/go/go-backend.c

index ac0dbe3f99d6a29ff4c350fdf361cb86990718ef..1925111f16909310cb01763a85a2e6a9b80e7a21 100644 (file)
@@ -1,3 +1,8 @@
+2017-07-27    Tony Reix  <tony.reix@atos.net>
+
+       * go-backend.c (go_write_export_data): Use EXCLUDE section for
+       AIX.
+
 2017-06-09  Ian Lance Taylor  <iant@golang.org>
 
        * go-lang.c (go_langhook_post_options): If -fsplit-stack is turned
index 2f8d2f405da1fcf35cb2a3723a1fe0462c079c39..21277ea2eb9585ef829f1d0ca535c3adf09d4fa5 100644 (file)
@@ -45,6 +45,10 @@ along with GCC; see the file COPYING3.  If not see
 #define GO_EXPORT_SECTION_NAME ".go_export"
 #endif
 
+#ifndef TARGET_AIX
+#define TARGET_AIX 0
+#endif
+
 /* This file holds all the cases where the Go frontend needs
    information from gcc's backend.  */
 
@@ -101,7 +105,9 @@ go_write_export_data (const char *bytes, unsigned int size)
   if (sec == NULL)
     {
       gcc_assert (targetm_common.have_named_sections);
-      sec = get_section (GO_EXPORT_SECTION_NAME, SECTION_DEBUG, NULL);
+      sec = get_section (GO_EXPORT_SECTION_NAME,
+                        TARGET_AIX ? SECTION_EXCLUDE : SECTION_DEBUG,
+                        NULL);
     }
 
   switch_to_section (sec);