diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-27 11:17:42 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-27 11:17:42 +0100 |
commit | a5f75e4a3fb4e6562c09799f01d9af6107450e01 (patch) | |
tree | a9ce1c11ca8f8bb92eb7e0f3b2f0356ab72ccae5 /contrib/t1ha/t1ha.h | |
parent | b7dbb7d1c7ca8716996b324e6e16de87c6646d7c (diff) | |
download | rspamd-a5f75e4a3fb4e6562c09799f01d9af6107450e01.tar.gz rspamd-a5f75e4a3fb4e6562c09799f01d9af6107450e01.zip |
[Fix] Fix alignment mess
Issue: #2945
Diffstat (limited to 'contrib/t1ha/t1ha.h')
-rw-r--r-- | contrib/t1ha/t1ha.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/contrib/t1ha/t1ha.h b/contrib/t1ha/t1ha.h index 3d267838c..e5f2dadfb 100644 --- a/contrib/t1ha/t1ha.h +++ b/contrib/t1ha/t1ha.h @@ -217,18 +217,8 @@ #define T1HA_API #endif /* T1HA_API */ -#if defined(_MSC_VER) -#define T1HA_ALIGN_PREFIX __declspec(align(16)) /* required only for SIMD */ -#else #define T1HA_ALIGN_PREFIX -#endif /* _MSC_VER */ - -#if defined(__GNUC__) -#define T1HA_ALIGN_SUFFIX \ - __attribute__((aligned(16))) /* required only for SIMD */ -#else #define T1HA_ALIGN_SUFFIX -#endif /* GCC x86 */ #ifdef __cplusplus extern "C" { |