Bug-Debian: https://bugs.debian.org/837719
Forwarded: no
Last-Update: 2017-12-10
Gbp-Pq: Name semaphore_O0_ppc64el.patch
# define USE_OPENMP_LOCKS 1
#endif
+#if defined(_ARCH_PPC64)
+# pragma GCC push_options
+# pragma GCC optimize("O0")
+#endif
+
#if defined(USE_PTHREAD_LOCKS)
# include <pthread.h>
# define PTHREAD_MUTEX_DESTROY(semaphore_mutex) \
LeaveCriticalSection(&semaphore_info->mutex);
#endif /* defined(USE_WIN32_LOCKS) */
}
+
+#if defined(_ARCH_PPC64)
+# pragma GCC pop_options
+#endif