Browse Source

Attribute used is correctly supported by the Intel C compiler since version 11.1.

tags/n0.8
Carl Eugen Hoyos 14 years ago
parent
commit
d667be2cea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/mem.h

+ 1
- 1
libavutil/mem.h View File

@@ -29,7 +29,7 @@
#include "attributes.h" #include "attributes.h"
#include "avutil.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_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
#define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
#elif defined(__TI_COMPILER_VERSION__) #elif defined(__TI_COMPILER_VERSION__)


Loading…
Cancel
Save