- removed unused variables
This commit is contained in:
Dmitry Stogov 2010-04-27 12:17:32 +00:00
parent c58b131e29
commit d8a7f892ee

View File

@ -1883,7 +1883,6 @@ void zend_do_begin_method_call(znode *left_bracket TSRMLS_DC) /* {{{ */
} else {
zend_op *opline = get_next_op(CG(active_op_array) TSRMLS_CC);
opline->opcode = ZEND_INIT_FCALL_BY_NAME;
SET_NODE(opline->op2, left_bracket);
SET_UNUSED(opline->op1);
if (left_bracket->op_type == IS_CONST) {
opline->op2_type = IS_CONST;
@ -1918,8 +1917,6 @@ void zend_do_begin_dynamic_function_call(znode *function_name, int ns_call TSRML
opline = get_next_op(CG(active_op_array) TSRMLS_CC);
if (ns_call) {
char *slash;
int prefix_len, name_len;
/* In run-time PHP will check for function with full name and
internal function with short name */
opline->opcode = ZEND_INIT_NS_FCALL_BY_NAME;