Commit 33b88f2a authored by Alex Smith's avatar Alex Smith Committed by Martin Storsjö

msvc/icl: Use __declspec(noinline)

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 09f2581d
......@@ -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
......
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