diff options
author | Memphiz <memphis@machzwo.de> | 2017-06-18 12:29:38 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2017-06-21 09:08:14 +0300 |
commit | 9e85c5d6a7e65c38aed6a75f9065dfa3b6c4418c (patch) | |
tree | b524a83b0ad56f110b97f76a237aafb0ed74e77b /libavcodec/aarch64/vp9mc_16bpp_neon.S | |
parent | 998609ddb8884fd0f33abdb74c8bd4e1234032b1 (diff) | |
download | ffmpeg-9e85c5d6a7e65c38aed6a75f9065dfa3b6c4418c.tar.gz |
aarch64: vp9 16bpp: Fix assembling with Xcode 6.2 and older
Properly use the b.eq form instead of the nonstandard form (which
both gas and newer clang accept though), and expand the register
lists that used a range (which the Xcode 6.2 clang, based on clang
3.5 svn, didn't support).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/aarch64/vp9mc_16bpp_neon.S')
-rw-r--r-- | libavcodec/aarch64/vp9mc_16bpp_neon.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aarch64/vp9mc_16bpp_neon.S b/libavcodec/aarch64/vp9mc_16bpp_neon.S index 98ffd2e8a7..cac6428709 100644 --- a/libavcodec/aarch64/vp9mc_16bpp_neon.S +++ b/libavcodec/aarch64/vp9mc_16bpp_neon.S @@ -275,7 +275,7 @@ function \type\()_8tap_\size\()h subs x9, x9, #32 st1 {v1.8h, v2.8h}, [x0], #32 st1 {v24.8h, v25.8h}, [x6], #32 - beq 3f + b.eq 3f mov v5.16b, v7.16b mov v16.16b, v18.16b ld1 {v6.8h, v7.8h}, [x2], #32 |