From 7a205f6087892996b2a2e3deabcf8a714e4b9d96 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Tue, 19 Oct 1999 13:33:17 +0000 Subject: - Preliminary submit of Thie's patch. Will fix the rest on Windows as this was added on UNIX with patch. Changed IS_SAME -> IS_IDENTICAL --- Zend/zend_opcode.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Zend/zend_opcode.c') diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 8c2444659f..5aa107305b 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -380,6 +380,9 @@ ZEND_API void *get_binary_op(int opcode) case ZEND_ASSIGN_CONCAT: return (void *) concat_function; break; + case ZEND_IS_IDENTICAL: + return (void *) is_identical_function; + break; case ZEND_IS_EQUAL: return (void *) is_equal_function; break; -- cgit v1.2.1