Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2017-09-24 15:24:02 +0300
committerDiego Biurrun <diego@biurrun.de>2017-10-25 14:39:58 +0300
commit0af8a72174108b9bb482f1073a1e9a3bc258af51 (patch)
treebebe9192fd1e657e043e48d91931d69e97c46da1 /libavutil/mem.h
parent2708c8e8efefaad337ccab1e3bf59dcde66c6bc5 (diff)
build: Drop support for legacy TI ARM compiler
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r--libavutil/mem.h7
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