diff options
author | Martin Storsjö <martin@martin.st> | 2014-11-16 12:51:54 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-12-09 11:43:25 +0200 |
commit | f963f80399deb1a2b44c1bac3af7123e8a0c9e46 (patch) | |
tree | 8d0a9e61779857e987d90fa492c93350ada93bf3 /libavcodec/arm/fft_vfp.S | |
parent | 3c01039e0bc7d269900e15551f8171c4328a0223 (diff) | |
download | ffmpeg-f963f80399deb1a2b44c1bac3af7123e8a0c9e46.tar.gz |
arm: Use .data.rel.ro for const data with relocations
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/arm/fft_vfp.S')
-rw-r--r-- | libavcodec/arm/fft_vfp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/fft_vfp.S b/libavcodec/arm/fft_vfp.S index 9c7b54e79e..c2801fa1a9 100644 --- a/libavcodec/arm/fft_vfp.S +++ b/libavcodec/arm/fft_vfp.S @@ -33,7 +33,7 @@ function ff_fft_calc_vfp, export=1 movrel a2, (fft_tab_vfp - 8) ldr pc, [a2, ip, lsl #2] endfunc -const fft_tab_vfp +const fft_tab_vfp, relocate=1 .word fft4_vfp .word fft8_vfp .word X(ff_fft16_vfp) @ this one alone is exported |