1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00

Fixed build...

This commit is contained in:
Bob Weinand
2013-12-21 21:29:08 +01:00
parent 50d50c2f04
commit 7894e397d8
2 changed files with 2 additions and 2 deletions

View File

@@ -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");
}

View File

@@ -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",