; * src/bytecode-jit.c: Make `functions' array static const to allow the
compiler to elide the array accesses. This brings `jit_byte_code__'
performance back in line with the more explicit, repetitive
pre-
639dfad3ae2a478652a399986b03e5eec219eab1 version.
void * const ptr;
const char * const name;
int n;
-} functions[256] = {
+} static const functions[256] = {
#undef DEFINE_FIXED
#define DEFINE_FIXED(bname, value, fname, num) \
[value] = { .ptr = (void *)(&fname), .name = #fname, .n = num },