Remove the now unused macros __align16, ALIGNED_DECLARE_MATRIX_1D and ALIGNED_DECLARE_MATRIX_2D
This commit is contained in:
parent
f300476468
commit
263833b3bf
@ -73,20 +73,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ALIGNED_DECLARE( type, var, n ) __declspec(align(n)) type var
|
#define ALIGNED_DECLARE( type, var, n ) __declspec(align(n)) type var
|
||||||
#define __align16(t,v) __declspec(align(16)) t v
|
|
||||||
#define ALIGNED_DECLARE_MATRIX_1D(name,size,type,alignment) \
|
|
||||||
__declspec(align(alignment)) type name[(size)]
|
|
||||||
#define ALIGNED_DECLARE_MATRIX_2D(name,sizex,sizey,type,alignment) \
|
|
||||||
__declspec(align(alignment)) type name[(sizex)*(sizey)]
|
|
||||||
|
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
|
|
||||||
#define ALIGNED_DECLARE( type, var, n ) type var __attribute__((aligned(n)))
|
#define ALIGNED_DECLARE( type, var, n ) type var __attribute__((aligned(n)))
|
||||||
#define __align16(t,v) t v __attribute__ ((aligned (16)))
|
|
||||||
#define ALIGNED_DECLARE_MATRIX_1D(name,size,type,alignment) \
|
|
||||||
type name[size] __attribute__((aligned(alignment)))
|
|
||||||
#define ALIGNED_DECLARE_MATRIX_2D(name,sizex,sizey,type,alignment) \
|
|
||||||
type name[(sizex)*(sizey)] __attribute__((aligned(alignment)))
|
|
||||||
#endif//_MSC_VER
|
#endif//_MSC_VER
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user