1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

arm64: replace 'bic' with immediate with 'and' with inverted immediate

The former is not an official pseudo instruction although gas and llvm's
internal assembler support it. Fixes a build error with xcode 6.2
reported by Memphiz on github.
This commit is contained in:
Janne Grunau
2016-12-08 20:40:34 +01:00
parent 05a603a94e
commit 2425d7329f

View File

@@ -50,7 +50,7 @@ function ff_synth_filter_float_neon, export=1
add x1, x1, x7, lsl #2 // synth_buf add x1, x1, x7, lsl #2 // synth_buf
sub w8, w7, #32 sub w8, w7, #32
stp x5, x1, [sp, #16] stp x5, x1, [sp, #16]
bic x7, x7, #63 and x7, x7, #~63
and w8, w8, #511 and w8, w8, #511
stp x7, x30, [sp, #32] stp x7, x30, [sp, #32]
str w8, [x2] str w8, [x2]