Skip to content

Commit a515f60

Browse files
committed
Remove unused backpatch_count field
1 parent 4097927 commit a515f60

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Zend/zend_compile.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,6 @@ void zend_oparray_context_begin(zend_oparray_context *prev_context) /* {{{ */
247247
CG(context).opcodes_size = INITIAL_OP_ARRAY_SIZE;
248248
CG(context).vars_size = 0;
249249
CG(context).literals_size = 0;
250-
CG(context).backpatch_count = 0;
251250
CG(context).fast_call_var = -1;
252251
CG(context).try_catch_offset = -1;
253252
CG(context).current_brk_cont = -1;

Zend/zend_compile.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ typedef struct _zend_oparray_context {
185185
uint32_t opcodes_size;
186186
int vars_size;
187187
int literals_size;
188-
int backpatch_count;
189188
uint32_t fast_call_var;
190189
uint32_t try_catch_offset;
191190
int current_brk_cont;

0 commit comments

Comments
 (0)