Move the test for zero incx,incy in ARMV7 ROT
to pass the related utest (see #1469)
This commit is contained in:
parent
125343cc88
commit
2d0929fa7c
|
@ -483,13 +483,13 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
cmp N, #0
|
cmp N, #0
|
||||||
ble rot_kernel_L999
|
ble rot_kernel_L999
|
||||||
|
/*
|
||||||
cmp INC_X, #0
|
cmp INC_X, #0
|
||||||
beq rot_kernel_L999
|
beq rot_kernel_L999
|
||||||
|
|
||||||
cmp INC_Y, #0
|
cmp INC_Y, #0
|
||||||
beq rot_kernel_L999
|
beq rot_kernel_L999
|
||||||
|
*/
|
||||||
cmp INC_X, #1
|
cmp INC_X, #1
|
||||||
bne rot_kernel_S_BEGIN
|
bne rot_kernel_S_BEGIN
|
||||||
|
|
||||||
|
@ -585,6 +585,12 @@ rot_kernel_S10:
|
||||||
|
|
||||||
KERNEL_S1
|
KERNEL_S1
|
||||||
|
|
||||||
|
cmp INC_X, #0
|
||||||
|
beq rot_kernel_L999
|
||||||
|
|
||||||
|
cmp INC_Y, #0
|
||||||
|
beq rot_kernel_L999
|
||||||
|
|
||||||
subs I, I, #1
|
subs I, I, #1
|
||||||
bne rot_kernel_S10
|
bne rot_kernel_S10
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue