From 11c5c78401b803a8292958731a66ba39528fee0f Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 14 Apr 2020 15:37:20 +0300 Subject: [PATCH] Added missed '~' --- ext/opcache/jit/zend_jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit.c b/ext/opcache/jit/zend_jit.c index 343b945768..27f889f031 100644 --- a/ext/opcache/jit/zend_jit.c +++ b/ext/opcache/jit/zend_jit.c @@ -847,7 +847,7 @@ static int zend_jit_split_interval(zend_lifetime_interval *current, uint32_t pos ival->ssa_var = current->ssa_var; ival->reg = ZREG_NONE; ival->flags |= ZREG_SPLIT | ZREG_LOAD; - ival->flags &= ZREG_STORE; + ival->flags &= ~ZREG_STORE; ival->hint = NULL; do { -- 2.40.0