summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-10-19 13:33:17 +0000
committerAndi Gutmans <andi@php.net>1999-10-19 13:33:17 +0000
commit7a205f6087892996b2a2e3deabcf8a714e4b9d96 (patch)
tree251d8390481c10c8bd97dd8e1a6ee02a18c2b5f8 /Zend/zend_opcode.c
parent578c6035c8d54a8223b8ff2364f34902b144dc47 (diff)
downloadphp-git-7a205f6087892996b2a2e3deabcf8a714e4b9d96.tar.gz
- 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
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c3
1 files changed, 3 insertions, 0 deletions
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;