Browse Source

Move the test for zero incx,incy in ARMV7 ROT

to pass the related utest (see #1469)
tags/v0.3.0^2
Martin Kroeker GitHub 8 years ago
parent
commit
2d0929fa7c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      kernel/arm/rot_vfp.S

+ 8
- 2
kernel/arm/rot_vfp.S 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


Loading…
Cancel
Save