Mark my_var as used. Otherwise it fails at -O2.
* testsuite/ld-elf/pr21964-5.c (my_var): Mark as used.
+2018-01-31 H.J. Lu <hongjiu.lu@intel.com>
+
+ * testsuite/ld-elf/pr21964-5.c (my_var): Mark as used.
+
2018-01-31 Maciej W. Rozycki <macro@mips.com>
* testsuite/ld-elf/shared.exp: Fix a typo s/scrip/script/.
extern int __stop___verbose[];
int bar (void)
{
- static int my_var __attribute__((section("__verbose"))) = 6;
+ static int my_var __attribute__((section("__verbose"), used)) = 6;
int *ptr;
ptr = (int*) dlsym(RTLD_DEFAULT, "__start___verbose");
if (!ptr || *ptr != 6)