Fix IxMIN/IxMAX defaulting to the IxAMIN/IxAMAX kernels

This commit is contained in:
Martin Kroeker 2020-02-21 09:58:56 +01:00 committed by GitHub
parent 75577f95a7
commit 6d7129a29b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

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 ###