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 ### ### IMAX ###
ifndef ISMAXKERNEL ifndef ISMAXKERNEL
ISMAXKERNEL = iamax.S ISMAXKERNEL = imax.S
endif endif
ifndef IDMAXKERNEL ifndef IDMAXKERNEL
IDMAXKERNEL = iamax.S IDMAXKERNEL = imax.S
endif endif
ifndef IQMAXKERNEL ifndef IQMAXKERNEL
IQMAXKERNEL = iamax.S IQMAXKERNEL = imax.S
endif endif
### IMIN ### ### IMIN ###
ifndef ISMINKERNEL ifndef ISMINKERNEL
ISMINKERNEL = iamin.S ISMINKERNEL = imin.S
endif endif
ifndef IDMINKERNEL ifndef IDMINKERNEL
IDMINKERNEL = iamin.S IDMINKERNEL = imin.S
endif endif
ifndef IQMINKERNEL ifndef IQMINKERNEL
IQMINKERNEL = iamin.S IQMINKERNEL = imin.S
endif endif
### ASUM ### ### ASUM ###