summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-08-10 17:57:49 +0300
committerDmitry Stogov <dmitry@zend.com>2015-08-10 17:57:49 +0300
commitadcb1102e79bfe027236c8955ffd4d18ccd6d05e (patch)
tree334170dbb3ed2acbc8bb077827fa3967cea1257f
parentcdc0dd48260bf64113357d08c3c8ed64b237acf7 (diff)
downloadphp-git-adcb1102e79bfe027236c8955ffd4d18ccd6d05e.tar.gz
Fixed typo
-rw-r--r--Zend/zend_vm_gen.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_vm_gen.php b/Zend/zend_vm_gen.php
index ed194486a4..cb4ac8433b 100644
--- a/Zend/zend_vm_gen.php
+++ b/Zend/zend_vm_gen.php
@@ -1133,7 +1133,7 @@ function gen_executor($f, $skl, $spec, $kind, $executor_name, $initializer_name)
out($f,"#undef DCL_OPLINE\n");
out($f,"#undef USE_OPLINE\n");
out($f,"#undef LOAD_OPLINE\n");
- out($f,"#undef LOAD_NEXT_OPLINE()\n");
+ out($f,"#undef LOAD_NEXT_OPLINE\n");
out($f,"#undef SAVE_OPLINE\n");
out($f,"#define OPLINE opline\n");
out($f,"#define DCL_OPLINE const zend_op *opline;\n");
@@ -1634,7 +1634,7 @@ function gen_vm($def, $skel) {
out($f,"#undef DCL_OPLINE\n");
out($f,"#undef USE_OPLINE\n");
out($f,"#undef LOAD_OPLINE\n");
- out($f,"#undef LOAD_NEXT_OPLINE()\n");
+ out($f,"#undef LOAD_NEXT_OPLINE\n");
out($f,"#undef SAVE_OPLINE\n");
out($f,"#define OPLINE EX(opline)\n");
out($f,"#define DCL_OPLINE\n");