File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed 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