Skip to content

Commit e344db2

Browse files
authored
Remove premature exit for INC_X or INC_Y zero
1 parent 545b82e commit e344db2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

kernel/arm/sdot_vfp.S

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,11 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
253253
cmp N, #0
254254
ble sdot_kernel_L999
255255

256-
cmp INC_X, #0
257-
beq sdot_kernel_L999
256+
# cmp INC_X, #0
257+
# beq sdot_kernel_L999
258258

259-
cmp INC_Y, #0
260-
beq sdot_kernel_L999
259+
# cmp INC_Y, #0
260+
# beq sdot_kernel_L999
261261

262262
cmp INC_X, #1
263263
bne sdot_kernel_S_BEGIN

0 commit comments

Comments
 (0)