Commit 38b4649d authored by Stefan Behnel's avatar Stefan Behnel

fix 'restrict' usage in g++

parent f72eb896
...@@ -275,6 +275,17 @@ ...@@ -275,6 +275,17 @@
#endif #endif
#endif #endif
/* restrict */
#ifndef CYTHON_RESTRICT
#if defined(__GNUC__)
#define CYTHON_RESTRICT __restrict__
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define CYTHON_RESTRICT restrict
#else
#define CYTHON_RESTRICT
#endif
#endif
#ifdef NAN #ifdef NAN
#define __PYX_NAN() ((float) NAN) #define __PYX_NAN() ((float) NAN)
#else #else
......
...@@ -621,11 +621,7 @@ static CYTHON_INLINE void __Pyx_crop_slice(Py_ssize_t* _start, Py_ssize_t* _stop ...@@ -621,11 +621,7 @@ static CYTHON_INLINE void __Pyx_crop_slice(Py_ssize_t* _start, Py_ssize_t* _stop
*_stop = stop; *_stop = stop;
} }
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L static CYTHON_INLINE void __Pyx_copy_object_array(PyObject** CYTHON_RESTRICT src, PyObject** CYTHON_RESTRICT dest, Py_ssize_t length) {
static CYTHON_INLINE void __Pyx_copy_object_array(PyObject** restrict src, PyObject** restrict dest, Py_ssize_t length) {
#else
static CYTHON_INLINE void __Pyx_copy_object_array(PyObject** src, PyObject** dest, Py_ssize_t length) {
#endif
PyObject *v; PyObject *v;
Py_ssize_t i; Py_ssize_t i;
for (i = 0; i < length; i++) { for (i = 0; i < length; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment