Commit 8e339d4a authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Gcc attribute may_alias is not supported (or silently ignored) by all supported compilers.

Originally committed as revision 21917 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2e519564
......@@ -56,7 +56,7 @@
#endif
#ifndef av_alias
#if HAVE_ATTRIBUTE_MAY_ALIAS
#if HAVE_ATTRIBUTE_MAY_ALIAS && (!defined(__ICC) || __ICC > 1110) && AV_GCC_VERSION_AT_LEAST(3,3)
# define av_alias __attribute__((may_alias))
#else
# define av_alias
......
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