mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 08:46:47 +08:00
[AArch64] Fix up inline asm name in Convert8To8Row_SVE_SC
The existing implementation mistakenly refers to the parameter %2. This works fine however the parameter is already named %[width], and using the name should be preferred. Change-Id: Ifaf8fc83cdfc9b15c79d52e7e47cb72b53270a12 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/6225753 Reviewed-by: Frank Barchard <fbarchard@chromium.org>
This commit is contained in:
parent
5a9a6ea936
commit
ccdf870348
@ -1765,8 +1765,8 @@ static inline void Convert8To8Row_SVE_SC(const uint8_t* src_y,
|
||||
"b.eq 99f \n"
|
||||
|
||||
// Calculate predicates for the final iteration to deal with the tail.
|
||||
"whilelt p0.b, wzr, %w2 \n"
|
||||
"whilelt p1.b, %w[vl], %w2 \n" //
|
||||
"whilelt p0.b, wzr, %w[width] \n"
|
||||
"whilelt p1.b, %w[vl], %w[width] \n" //
|
||||
CONVERT8TO8_SVE
|
||||
|
||||
"99: \n"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user