Commit ecf7ce8f authored by ramiro's avatar ramiro

Do not throw compiler error if asm code needs alignment, but we do not know

how to do it for this compiler. This removes a dependency of config.h on the
DECLARE_* macros.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19383 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3166233c
......@@ -267,8 +267,6 @@ if((y)<(x)){\
#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
#elif HAVE_INLINE_ASM
#error The asm code needs alignment, but we do not know how to do it for this compiler.
#else
#define DECLARE_ALIGNED(n,t,v) t v
#define DECLARE_ASM_CONST(n,t,v) static const t v
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment