Browse Source

Fix caxpy/zaxpy for big-endian

tags/v0.3.16^2
Martin Kroeker GitHub 4 years ago
parent
commit
fb9e678235
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      kernel/power/KERNEL.PPCG4

+ 5
- 0
kernel/power/KERNEL.PPCG4 View File

@@ -15,8 +15,13 @@ ZASUMKERNEL = zasum_ppc440.S

SAXPYKERNEL = axpy_ppc440.S
DAXPYKERNEL = axpy_ppc440.S
ifneq ($(__BYTE_ORDER__),__ORDER_BIG_ENDIAN__)
CAXPYKERNEL = zaxpy_ppc440.S
ZAXPYKERNEL = zaxpy_ppc440.S
else
CAXPYKERNEL = ../arm/zaxpy.c
ZAXPYKERNEL = ../arm/zaxpy.c
endif

SDOTKERNEL = dot_ppc440.S
DDOTKERNEL = dot_ppc440.S


Loading…
Cancel
Save