summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2019-05-30 20:43:17 +0300
committerDmitry Stogov <dmitry@zend.com>2019-05-30 20:43:17 +0300
commit0a6a350371832bbece79b55d12b78055cf3a3b11 (patch)
treec3730db41420021b3e60b8f257ad286e128c527f /Zend/zend_execute.c
parentedd7fb2a16a17db017724831358a6706b4f69e40 (diff)
parentee565529138891e757727de230af9051caeda05d (diff)
downloadphp-git-0a6a350371832bbece79b55d12b78055cf3a3b11.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Disable "bad" optimisations only for emulation loop
Diffstat (limited to 'Zend/zend_execute.c')
-rw-r--r--Zend/zend_execute.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c
index e031fa412e..fc047c9340 100644
--- a/Zend/zend_execute.c
+++ b/Zend/zend_execute.c
@@ -4295,18 +4295,8 @@ static zend_never_inline int ZEND_FASTCALL zend_quick_check_constant(
} \
} while (0)
-#if ZEND_GCC_VERSION >= 4000 && !defined(__clang__)
-# pragma GCC push_options
-# pragma GCC optimize("no-gcse")
-# pragma GCC optimize("no-ivopts")
-#endif
-
#include "zend_vm_execute.h"
-#if ZEND_GCC_VERSION >= 4000 && !defined(__clang__)
-# pragma GCC pop_options
-#endif
-
ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler)
{
if (opcode != ZEND_USER_OPCODE) {