[FFmpeg-cvslog] Attribute used is correctly supported by the Intel C compiler since version 11 .1.
Carl Eugen Hoyos
git
Thu Mar 3 00:27:15 CET 2011
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Mar 3 00:25:02 2011 +0100| [d667be2ceaa3a415ac83c819f47e3255d00bfa94] | committer: Carl Eugen Hoyos
Attribute used is correctly supported by the Intel C compiler since version 11.1.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d667be2ceaa3a415ac83c819f47e3255d00bfa94
---
libavutil/mem.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavutil/mem.h b/libavutil/mem.h
index 4842c36..78a2449 100644
--- a/libavutil/mem.h
+++ b/libavutil/mem.h
@@ -29,7 +29,7 @@
#include "attributes.h"
#include "avutil.h"
-#if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1200 || defined(__SUNPRO_C)
+#if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1110 || defined(__SUNPRO_C)
#define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
#define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
#elif defined(__TI_COMPILER_VERSION__)
More information about the ffmpeg-cvslog
mailing list