Go to the documentation of this file.
22 #ifndef _BLAZE_SYSTEM_ALIGNMENT_H_
23 #define _BLAZE_SYSTEM_ALIGNMENT_H_
39 #if (defined __GNUC__) || (defined __PGI) || (defined __IBMCPP__)
40 # define BLAZE_ALIGN( n ) __attribute__((aligned(n)))
43 #elif (defined _MSC_VER)
44 # define BLAZE_ALIGN( n ) __declspec(align(n))
48 # error Compiler-specific alignment undefined!