diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-03-02 13:38:21 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-03-02 13:38:21 +0100 |
commit | a5b13b1423ec20c40bdf44454c12289a845ef317 (patch) | |
tree | 0ea445a0f37259e2ecd65939c87403f4db039b55 /libavutil/internal.h | |
parent | 42ccd2fcf834db379834d39b4012cbe18152dfe4 (diff) | |
download | ffmpeg-a5b13b1423ec20c40bdf44454c12289a845ef317.tar.gz |
Use macro __INTEL_COMPILER instead of __ICC.
__ICC is not supported on all platforms, this is an Intel documentation
bug that is supposed to be fixed in a future release.
(Intel issue 612289)
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r-- | libavutil/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 4c98a1299f..896e0b3858 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -39,7 +39,7 @@ #include "timer.h" #ifndef attribute_align_arg -#if ARCH_X86_32 && (!defined(__ICC) || __ICC > 1200) && AV_GCC_VERSION_AT_LEAST(4,2) +#if ARCH_X86_32 && (!defined(__INTEL_COMPILER) || __INTEL_COMPILER > 1200) && AV_GCC_VERSION_AT_LEAST(4,2) # define attribute_align_arg __attribute__((force_align_arg_pointer)) #else # define attribute_align_arg |