Skip to content

Commit 59433f8

Browse files
committed
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4: Zend/zend_call_stack.h: fix missing include on Windows (clang compat) (#20847)
2 parents cd32c59 + 371422b commit 59433f8

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ PHP NEWS
55
- Core:
66
. Fixed bug GH-21029 (zend_mm_heap corrupted on Aarch64, LTO builds). (Arnaud)
77

8+
- Windows:
9+
. Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas)
10+
811
29 Jan 2026, PHP 8.5.3
912

1013
- Core:

Zend/zend_call_stack.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121

2222
#include "zend.h"
2323
#include "zend_portability.h"
24+
#ifdef _MSC_VER
25+
# include <intrin.h>
26+
#endif
2427
#ifdef __APPLE__
2528
# include <pthread.h>
2629
#endif

0 commit comments

Comments
 (0)