|
|
|
@@ -41,7 +41,7 @@ |
|
|
|
static const t __attribute__((aligned(n))) v |
|
|
|
#elif defined(__GNUC__) |
|
|
|
#define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v |
|
|
|
#define DECLARE_ASM_CONST(n,t,v) static const t attribute_used __attribute__ ((aligned (n))) v |
|
|
|
#define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v |
|
|
|
#elif defined(_MSC_VER) |
|
|
|
#define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v |
|
|
|
#define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v |
|
|
|
|