Browse Source

Fixed build...

PHP-5.4.24
Bob Weinand 13 years ago
parent
commit
7894e397d8
  1. 2
      Zend/zend_vm_gen.php
  2. 2
      Zend/zend_vm_opcodes.h

2
Zend/zend_vm_gen.php

@ -1209,7 +1209,7 @@ function gen_vm($def, $skel) {
fputs($f,"#define $op $code\n");
}
fputs($f,"\nconst char *zend_vm_opcodes_map[] = {\n");
fputs($f,"\nstatic const char *zend_vm_opcodes_map[] = {\n");
for ($i = 0; $i <= $max_opcode; $i++) {
fputs($f,"\t".(isset($opcodes[$i]["op"])?'"'.$opcodes[$i]["op"].'"':"NULL").",\n");
}

2
Zend/zend_vm_opcodes.h

@ -163,7 +163,7 @@
#define ZEND_QM_ASSIGN_VAR 157
#define ZEND_JMP_SET_VAR 158
const char *zend_vm_opcodes_map[] = {
static const char *zend_vm_opcodes_map[] = {
"ZEND_NOP",
"ZEND_ADD",
"ZEND_SUB",

Loading…
Cancel
Save