Browse Source

Fix IxMIN/IxMAX defaulting to the IxAMIN/IxAMAX kernels

pull/2440/head
Martin Kroeker GitHub 6 years ago
parent
commit
6d7129a29b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      kernel/Makefile.L1

+ 6
- 6
kernel/Makefile.L1 View File

@@ -133,29 +133,29 @@ endif
### IMAX ###

ifndef ISMAXKERNEL
ISMAXKERNEL = iamax.S
ISMAXKERNEL = imax.S
endif

ifndef IDMAXKERNEL
IDMAXKERNEL = iamax.S
IDMAXKERNEL = imax.S
endif

ifndef IQMAXKERNEL
IQMAXKERNEL = iamax.S
IQMAXKERNEL = imax.S
endif

### IMIN ###

ifndef ISMINKERNEL
ISMINKERNEL = iamin.S
ISMINKERNEL = imin.S
endif

ifndef IDMINKERNEL
IDMINKERNEL = iamin.S
IDMINKERNEL = imin.S
endif

ifndef IQMINKERNEL
IQMINKERNEL = iamin.S
IQMINKERNEL = imin.S
endif

### ASUM ###


Loading…
Cancel
Save