summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-03-03 00:25:02 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-03-03 00:25:02 +0100
commitd667be2ceaa3a415ac83c819f47e3255d00bfa94 (patch)
tree84a23e39472c550aef59809ba560dbfae0afbed7 /libavutil/mem.h
parenta5b13b1423ec20c40bdf44454c12289a845ef317 (diff)
Attribute used is correctly supported by the Intel C compiler since version 11.1.
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r--libavutil/mem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h
index 4842c36dc8..78a244945c 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__)