Commit aa867800 authored by cehoyos's avatar cehoyos

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

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21917 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8b22a6d7
......@@ -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