msvc/icl: Use __declspec(noinline)

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Alex Smith 2013-09-19 17:33:23 -04:00 committed by Martin Storsjö
parent 09f2581dc5
commit 33b88f2a4a

View File

@ -42,6 +42,8 @@
#if AV_GCC_VERSION_AT_LEAST(3,1)
# define av_noinline __attribute__((noinline))
#elif defined(_MSC_VER)
# define av_noinline __declspec(noinline)
#else
# define av_noinline
#endif