Commit 8e3befdc660 for php.net

commit 8e3befdc660507588b286841b4bef33ca1aace90
Author: Shivam Mathur <shivam_jpr@hotmail.com>
Date:   Thu May 21 14:17:19 2026 +0530

    Fix Windows clang VM handler declaration (#22103)

diff --git a/Zend/zend_vm.h b/Zend/zend_vm.h
index 0727fdb15c7..22123545797 100644
--- a/Zend/zend_vm.h
+++ b/Zend/zend_vm.h
@@ -41,7 +41,7 @@ void zend_vm_init(void);
 void zend_vm_dtor(void);

 #if ZEND_VM_KIND == ZEND_VM_KIND_TAILCALL
-const struct _zend_op *zend_vm_handle_interrupt(struct _zend_execute_data *execute_data, const struct _zend_op *opline);
+const struct _zend_op *ZEND_FASTCALL zend_vm_handle_interrupt(struct _zend_execute_data *execute_data, const struct _zend_op *opline);
 #endif

 END_EXTERN_C()