diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-09-24 14:24:02 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-10-25 13:39:58 +0200 |
commit | 0af8a72174108b9bb482f1073a1e9a3bc258af51 (patch) | |
tree | bebe9192fd1e657e043e48d91931d69e97c46da1 /libavutil/mem.h | |
parent | 2708c8e8efefaad337ccab1e3bf59dcde66c6bc5 (diff) | |
download | ffmpeg-0af8a72174108b9bb482f1073a1e9a3bc258af51.tar.gz |
build: Drop support for legacy TI ARM compiler
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r-- | libavutil/mem.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index a03ba2f528..0aee0e0d88 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -41,13 +41,6 @@ #if defined(__ICC) && __ICC < 1200 || 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__) - #define DECLARE_ALIGNED(n,t,v) \ - AV_PRAGMA(DATA_ALIGN(v,n)) \ - t __attribute__((aligned(n))) v - #define DECLARE_ASM_CONST(n,t,v) \ - AV_PRAGMA(DATA_ALIGN(v,n)) \ - static const t __attribute__((aligned(n))) v #elif defined(__GNUC__) || defined(__clang__) #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v |