We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4097927 commit a515f60Copy full SHA for a515f60
Zend/zend_compile.c
@@ -247,7 +247,6 @@ void zend_oparray_context_begin(zend_oparray_context *prev_context) /* {{{ */
247
CG(context).opcodes_size = INITIAL_OP_ARRAY_SIZE;
248
CG(context).vars_size = 0;
249
CG(context).literals_size = 0;
250
- CG(context).backpatch_count = 0;
251
CG(context).fast_call_var = -1;
252
CG(context).try_catch_offset = -1;
253
CG(context).current_brk_cont = -1;
Zend/zend_compile.h
@@ -185,7 +185,6 @@ typedef struct _zend_oparray_context {
185
uint32_t opcodes_size;
186
int vars_size;
187
int literals_size;
188
- int backpatch_count;
189
uint32_t fast_call_var;
190
uint32_t try_catch_offset;
191
int current_brk_cont;
0 commit comments