Remove redundant \t

This commit is contained in:
Xinchen Hui 2016-08-25 13:29:22 +08:00
parent f4e68a3968
commit 38f7d595c0
2 changed files with 2 additions and 2 deletions

View File

@ -61834,7 +61834,7 @@ void zend_init_opcodes_handlers(void)
4596
};
zend_opcode_handlers = labels;
zend_handlers_count = sizeof(labels) / sizeof(void*);
zend_handlers_count = sizeof(labels) / sizeof(void*);
zend_spec_handlers = specs;
}

View File

@ -1827,7 +1827,7 @@ function gen_executor($f, $skl, $spec, $kind, $executor_name, $initializer_name)
gen_specs($f, $spec, $kind, $prolog."\t", $specs);
out($f,$prolog."};\n");
out($f,$prolog."zend_opcode_handlers = labels;\n");
out($f,$prolog."\tzend_handlers_count = sizeof(labels) / sizeof(void*);\n");
out($f,$prolog."zend_handlers_count = sizeof(labels) / sizeof(void*);\n");
out($f,$prolog."zend_spec_handlers = specs;\n");
}
break;