diff options
author | Thomas Köppe <tkoeppe-at-google.com@ffmpeg.org> | 2017-11-12 16:24:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-11-13 03:58:34 +0100 |
commit | 43171a2a738f5114768d34a7278e56e5fde714bc (patch) | |
tree | 1a62d32327c279e9303a50e55a13416f3e102923 /libavcodec/cabac.c | |
parent | 1828c549c3ecd45d54ff03aee784b00a41f0e69e (diff) | |
download | ffmpeg-43171a2a738f5114768d34a7278e56e5fde714bc.tar.gz |
Fix missing used attribute for inline assembly variables
Variables used in inline assembly need to be marked with attribute((used)).
Static constants already were, via the define of DECLARE_ASM_CONST.
But DECLARE_ALIGNED does not add this attribute, and some of the variables
defined with it are const only used in inline assembly, and therefore
appeared dead. This change adds a macro DECLARE_ASM_ALIGNED that marks
variables as used.
This change makes FFMPEG work with Clang's ThinLTO.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/cabac.c')
-rw-r--r-- | libavcodec/cabac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.c b/libavcodec/cabac.c index dd2b057c6d..e51139de3b 100644 --- a/libavcodec/cabac.c +++ b/libavcodec/cabac.c @@ -32,7 +32,7 @@ #include "cabac.h" #include "cabac_functions.h" -const uint8_t ff_h264_cabac_tables[512 + 4*2*64 + 4*64 + 63] = { +DECLARE_ASM_ALIGNED(1, const uint8_t, ff_h264_cabac_tables)[512 + 4*2*64 + 4*64 + 63] = { 9,8,7,7,6,6,6,6,5,5,5,5,5,5,5,5, 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, |