diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2016-11-12 11:18:25 +0100 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2016-11-12 11:18:25 +0100 |
commit | 4cef0ead4934f423dde2a15d336cd7a001e0471c (patch) | |
tree | 3595b02ee342eaaa45c9fd54d7a07304fa961a93 | |
parent | 1f250b7e94fa29555fe4a21e34d12807efa4bd40 (diff) | |
download | php-git-4cef0ead4934f423dde2a15d336cd7a001e0471c.tar.gz |
Fix Windows build
-rw-r--r-- | ext/opcache/Optimizer/zend_inference.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_inference.c b/ext/opcache/Optimizer/zend_inference.c index afae8a7959..953011d737 100644 --- a/ext/opcache/Optimizer/zend_inference.c +++ b/ext/opcache/Optimizer/zend_inference.c @@ -1824,7 +1824,7 @@ static void zend_infer_ranges_warmup(const zend_op_array *op_array, zend_ssa *ss int worklist_len = zend_bitset_len(ssa->vars_count); int j, n; zend_ssa_range tmp; - ALLOCA_FLAG(use_heap); + ALLOCA_FLAG(use_heap) zend_bitset worklist = do_alloca(sizeof(zend_ulong) * worklist_len * 2, use_heap); zend_bitset visited = worklist + worklist_len; #ifdef NEG_RANGE |