Skip to content

Commit

Permalink
Merge pull request #23031 from charris/backport-23016
Browse files Browse the repository at this point in the history
BUG: use `_Alignof` rather than `offsetof()` on most compilers
  • Loading branch information
charris committed Jan 18, 2023
2 parents 104df7c + b3760fe commit e8f62ea
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 0 additions & 2 deletions numpy/core/src/multiarray/arraytypes.c.src
Expand Up @@ -224,8 +224,6 @@ MyPyLong_AsUnsigned@Type@(PyObject *obj)
** GETITEM AND SETITEM **
*****************************************************************************
*/

#define _ALIGN(type) offsetof(struct {char c; type v;}, v)
/*
* Disable harmless compiler warning "4116: unnamed type definition in
* parentheses" which is caused by the _ALIGN macro.
Expand Down
14 changes: 13 additions & 1 deletion numpy/core/src/multiarray/common.h
Expand Up @@ -178,7 +178,19 @@ check_and_adjust_axis(int *axis, int ndim)
}

/* used for some alignment checks */
#define _ALIGN(type) offsetof(struct {char c; type v;}, v)
/*
* GCC releases before GCC 4.9 had a bug in _Alignof. See GCC bug 52023
* <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52023>.
* clang versions < 8.0.0 have the same bug.
*/
#if (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112 \
|| (defined __GNUC__ && __GNUC__ < 4 + (__GNUC_MINOR__ < 9) \
&& !defined __clang__) \
|| (defined __clang__ && __clang_major__ < 8))
# define _ALIGN(type) offsetof(struct {char c; type v;}, v)
#else
# define _ALIGN(type) _Alignof(type)
#endif
#define _UINT_ALIGN(type) npy_uint_alignment(sizeof(type))
/*
* Disable harmless compiler warning "4116: unnamed type definition in
Expand Down

0 comments on commit e8f62ea

Please sign in to comment.