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

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2019-01-05 21:27:18 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2019-01-24 19:28:05 +0300
commit2c1eba5e2970f0f565c76d6dad8c715cdbb7baf4 (patch)
tree23b97594575a88278174c288361b7e864ea59f25 /src/arm/64/mc.S
parent1ef86e1bb62f39e9ed98b44a3fef512662b588a8 (diff)
arm64: mc: Use ubfx instead of ubfm, for consistency with arm
On arm, there's no ubfm instruction, only ubfx.
Diffstat (limited to 'src/arm/64/mc.S')
-rw-r--r--src/arm/64/mc.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arm/64/mc.S b/src/arm/64/mc.S
index ecdbbcc..4a8b643 100644
--- a/src/arm/64/mc.S
+++ b/src/arm/64/mc.S
@@ -742,7 +742,7 @@ function \type\()_8tap
L(\type\()_8tap_h):
cmp \w, #4
- ubfm w9, \mx, #7, #13
+ ubfx w9, \mx, #7, #7
and \mx, \mx, #0x7f
b.le 4f
mov \mx, w9
@@ -965,7 +965,7 @@ L(\type\()_8tap_h_tbl):
L(\type\()_8tap_v):
cmp \h, #4
- ubfm w9, \my, #7, #13
+ ubfx w9, \my, #7, #7
and \my, \my, #0x7f
b.le 4f
mov \my, w9
@@ -1269,7 +1269,7 @@ L(\type\()_8tap_v_tbl):
L(\type\()_8tap_hv):
cmp \h, #4
- ubfm w9, \my, #7, #13
+ ubfx w9, \my, #7, #7
and \my, \my, #0x7f
b.le 4f
mov \my, w9