diff options
Diffstat (limited to 'elf/ifuncmod1.c')
-rw-r--r-- | elf/ifuncmod1.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/elf/ifuncmod1.c b/elf/ifuncmod1.c index 2b8195c..0b61380 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) |