aboutsummaryrefslogtreecommitdiff
path: root/elf/ifuncmod1.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/ifuncmod1.c')
-rw-r--r--elf/ifuncmod1.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/elf/ifuncmod1.c b/elf/ifuncmod1.c
index 2b8195ce55..0b6138056d 100644
--- a/elf/ifuncmod1.c
+++ b/elf/ifuncmod1.c
@@ -6,7 +6,13 @@
*/
#include "ifunc-sel.h"
-int global __attribute__ ((visibility ("protected"))) = -1;
+int global = -1;
+/* Can't use __attribute__((visibility("protected"))) until the GCC bug:
+
+ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248
+
+ is fixed. */
+asm (".protected global");
static int
one (void)