File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 8
8
. Fixed bug #79489 (.user.ini does not inherit). (cmb)
9
9
. Fixed bug #79600 (Regression in 7.4.6 when yielding an array based
10
10
generator). (Nikita)
11
- . Fixed bug #79595 (zend_init_fpu() alters FPU precision). (cmb, Nikita)
12
11
13
12
- FFI:
14
13
. Fixed bug #79571 (FFI: var_dumping unions may segfault). (cmb)
Original file line number Diff line number Diff line change 22
22
23
23
ZEND_API void zend_init_fpu (void ) /* {{{ */
24
24
{
25
- /* under __SSE__ the FPCW is irrelevant; no need to change it */
26
- #if XPFPA_HAVE_CW && !defined(__SSE__ )
25
+ #if XPFPA_HAVE_CW
27
26
XPFPA_DECLARE
28
27
29
28
if (!EG (saved_fpu_cw_ptr )) {
@@ -39,7 +38,7 @@ ZEND_API void zend_init_fpu(void) /* {{{ */
39
38
40
39
ZEND_API void zend_shutdown_fpu (void ) /* {{{ */
41
40
{
42
- #if XPFPA_HAVE_CW && !defined( __SSE__ )
41
+ #if XPFPA_HAVE_CW
43
42
if (EG (saved_fpu_cw_ptr )) {
44
43
XPFPA_RESTORE_CW (EG (saved_fpu_cw_ptr ));
45
44
}
@@ -50,10 +49,8 @@ ZEND_API void zend_shutdown_fpu(void) /* {{{ */
50
49
51
50
ZEND_API void zend_ensure_fpu_mode (void ) /* {{{ */
52
51
{
53
- #ifndef __SSE__
54
52
XPFPA_DECLARE
55
53
56
54
XPFPA_SWITCH_DOUBLE ();
57
- #endif
58
55
}
59
56
/* }}} */
You can’t perform that action at this time.
0 commit comments