Move the test for zero incx,incy in ARMV7 ROT

to pass the related utest (see #1469)
This commit is contained in:
Martin Kroeker 2018-04-24 22:43:00 +02:00 committed by GitHub
parent 125343cc88
commit 2d0929fa7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -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
@ -584,6 +584,12 @@ rot_kernel_S1:
rot_kernel_S10: 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