From: Xinchen Hui Date: Fri, 13 Oct 2017 09:35:02 +0000 (+0800) Subject: Fixed typo X-Git-Tag: php-7.2.0RC5~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e50cc4d3af76ae20fed2fc9c02029c3abfacc2e0;p=php Fixed typo --- 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) {