File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ typedef struct _zend_jit_stub {
106
106
zend_ulong zend_jit_profile_counter = 0 ;
107
107
int zend_jit_profile_counter_rid = -1 ;
108
108
109
- int16_t zend_jit_hot_counters [ZEND_HOT_COUNTERS_COUNT ];
109
+ #define ZEND_HOT_COUNTERS_COUNT 128
110
+ static int16_t zend_jit_hot_counters [ZEND_HOT_COUNTERS_COUNT ];
110
111
111
112
const zend_op * zend_jit_halt_op = NULL ;
112
113
static int zend_jit_vm_kind = 0 ;
Original file line number Diff line number Diff line change @@ -233,10 +233,6 @@ extern int zend_jit_profile_counter_rid;
233
233
234
234
/* Hot Counters */
235
235
236
- #define ZEND_HOT_COUNTERS_COUNT 128
237
-
238
- extern int16_t zend_jit_hot_counters [ZEND_HOT_COUNTERS_COUNT ];
239
-
240
236
static zend_always_inline zend_long zend_jit_hash (const void * ptr )
241
237
{
242
238
uintptr_t x ;
You can’t perform that action at this time.
0 commit comments