0007-avoid-bfin-gcc-segfault.patch 804 B

12345678910111213141516
  1. Avoid gcc segmentation fault
  2. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
  3. diff -Nur php-7.0.12.orig/Zend/zend_portability.h php-7.0.12/Zend/zend_portability.h
  4. --- php-7.0.12.orig/Zend/zend_portability.h 2016-10-13 16:04:17.000000000 +0200
  5. +++ php-7.0.12/Zend/zend_portability.h 2016-11-08 02:49:39.118388999 +0100
  6. @@ -97,7 +97,7 @@
  7. #if defined(ZEND_WIN32) && !defined(__clang__)
  8. # define ZEND_ASSUME(c) __assume(c)
  9. -#elif ((defined(__GNUC__) && ZEND_GCC_VERSION >= 4005) || __has_builtin(__builtin_unreachable)) && PHP_HAVE_BUILTIN_EXPECT
  10. +#elif ((defined(__GNUC__) && ZEND_GCC_VERSION >= 4005) || __has_builtin(__builtin_unreachable)) && PHP_HAVE_BUILTIN_EXPECT && !defined(__bfin__)
  11. # define ZEND_ASSUME(c) do { \
  12. if (__builtin_expect(!(c), 0)) __builtin_unreachable(); \
  13. } while (0)