summaryrefslogtreecommitdiff
path: root/Zend/zend_multiply.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2016-08-11 19:57:30 +0800
committerXinchen Hui <laruence@gmail.com>2016-08-11 19:57:30 +0800
commit75017520c3a4a8115af8cc5fbaf3028bace544bc (patch)
treebc1186f642f84b3e700b6318567b9674eb5006f5 /Zend/zend_multiply.h
parentafd11643c383de6b59d12310792d74039eba359b (diff)
downloadphp-git-75017520c3a4a8115af8cc5fbaf3028bace544bc.tar.gz
Check them in autoconf
Diffstat (limited to 'Zend/zend_multiply.h')
-rw-r--r--Zend/zend_multiply.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h
index 7fb500a5f0..56446e94d1 100644
--- a/Zend/zend_multiply.h
+++ b/Zend/zend_multiply.h
@@ -24,7 +24,7 @@
#ifndef ZEND_MULTIPLY_H
#define ZEND_MULTIPLY_H
-#if __has_builtin(__builtin_smull_overflow) && SIZEOF_LONG == SIZEOF_ZEND_LONG
+#if PHP_HAVE_BUILTIN_SMULL_OVERFLOW && SIZEOF_LONG == SIZEOF_ZEND_LONG
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
long __tmpvar; \
@@ -34,7 +34,7 @@
else (lval) = __tmpvar; \
} while (0)
-#elif __has_builtin(__builtin_smulll_overflow) && SIZEOF_LONG_LONG == SIZEOF_ZEND_LONG
+#elif PHP_HAVE_BUILTIN_SMULLL_OVERFLOW && SIZEOF_LONG_LONG == SIZEOF_ZEND_LONG
#define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \
long long __tmpvar; \