Browse Source

Allow negative INCX (API change from version 3.10 of the reference implementation)

tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
c211da0688
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      kernel/sparc/cnrm2.S
  2. +1
    -1
      kernel/sparc/dnrm2.S
  3. +1
    -1
      kernel/sparc/snrm2.S
  4. +1
    -1
      kernel/sparc/znrm2.S

+ 1
- 1
kernel/sparc/cnrm2.S View File

@@ -76,7 +76,7 @@
FMOV c1, t4

cmp INCX, 0
ble .LL20
beq .LL20
sll INCX, ZBASE_SHIFT, INCX

cmp N, 0


+ 1
- 1
kernel/sparc/dnrm2.S View File

@@ -107,7 +107,7 @@
FMOV fzero, c1

cmp INCX, 0
ble .LL99
beq .LL99
sll INCX, BASE_SHIFT, INCX

add %sp, -8, %sp


+ 1
- 1
kernel/sparc/snrm2.S View File

@@ -76,7 +76,7 @@
FMOV c1, t4

cmp INCX, 0
ble .LL20
beq .LL20
sll INCX, BASE_SHIFT, INCX

cmp N, 0


+ 1
- 1
kernel/sparc/znrm2.S View File

@@ -107,7 +107,7 @@
FMOV fzero, c1

cmp INCX, 0
ble .LL99
beq .LL99
sll INCX, ZBASE_SHIFT, INCX

add %sp, -8, %sp


Loading…
Cancel
Save