added alignment test

and fix an incorrect alignment check in cwksp which was failing on m68k
This commit is contained in:
Yann Collet
2021-12-01 17:16:36 -08:00
parent 9b97fdf74f
commit e89e847820
2 changed files with 22 additions and 2 deletions
+20
View File
@@ -80,6 +80,26 @@ extern "C" {
#endif
/*-**************************************************************
* Alignment check
*****************************************************************/
/* C11 support */
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
#include <stdalign.h>
# define MEM_ALIGN_COND(T) alignof(T)
#elif defined(__GNUC__) || defined(_MSC_VER)
# define MEM_ALIGN_COND(T) __alignof(T)
#else
# define MEM_ALIGN_COND(T) 1 /* most likely incorrect, just to pass tests */
#endif
/*-**************************************************************
* Memory I/O API
*****************************************************************/