diff options
author | Xinchen Hui <laruence@gmail.com> | 2017-10-13 17:35:02 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2017-10-13 17:35:02 +0800 |
commit | e50cc4d3af76ae20fed2fc9c02029c3abfacc2e0 (patch) | |
tree | 3b842c14ad6d69fc8c719a697ce41ad567c0a5b7 /ext/opcache | |
parent | 3f8961dfac96a992df2516c0e383e6820eedd31b (diff) | |
download | php-git-e50cc4d3af76ae20fed2fc9c02029c3abfacc2e0.tar.gz |
Fixed typo
Diffstat (limited to 'ext/opcache')
-rw-r--r-- | ext/opcache/Optimizer/ssa_integrity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/ssa_integrity.c b/ext/opcache/Optimizer/ssa_integrity.c index ae3495b903..04d8f534ed 100644 --- a/ext/opcache/Optimizer/ssa_integrity.c +++ b/ext/opcache/Optimizer/ssa_integrity.c @@ -223,7 +223,7 @@ int ssa_verify_integrity(zend_op_array *op_array, zend_ssa *ssa, const char *ext FAIL("op2 use %d out of range\n", ssa_op->op2_use); } if (!is_in_use_chain(ssa, ssa_op->op2_use, i)) { - FAIL("op1 use of " VARFMT " in " INSTRFMT " not in use chain\n", + FAIL("op2 use of " VARFMT " in " INSTRFMT " not in use chain\n", VAR(ssa_op->op2_use), INSTR(i)); } if (VAR_NUM(opline->op2.var) != ssa->vars[ssa_op->op2_use].var) { |