Otherwise clang will delete it: it's otherwise unused.
gdb/testsuite/ChangeLog:
* gdb.base/gcore.c (array_func): Add reference to static_array.
+2015-09-28 Doug Evans <dje@google.com>
+
+ * gdb.base/gcore.c (array_func): Add reference to static_array.
+
2015-09-25 Simon Marchi <simon.marchi@ericsson.com>
* gdb.gdb/selftest.exp (do_steps_and_nexts): Adjust expected
un_initialized_array[i] = extern_array[i] + 8;
local_array[i] = extern_array[i] + 12;
}
+ /* Reference static_array so that clang doesn't discard it. */
+ (void) static_array[0];
terminal_func ();
}