From 6d7129a29bc0ffae33ba04b9778559b0dead24bd Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 21 Feb 2020 09:58:56 +0100 Subject: [PATCH] Fix IxMIN/IxMAX defaulting to the IxAMIN/IxAMAX kernels --- kernel/Makefile.L1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kernel/Makefile.L1 b/kernel/Makefile.L1 index 970703230..ddc55e032 100644 --- a/kernel/Makefile.L1 +++ b/kernel/Makefile.L1 @@ -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 ###