From afdd540e841077f85d498f6250433c68e2f14b27 Mon Sep 17 00:00:00 2001 From: Alexandre Frade Date: Fri, 18 Jun 2021 19:24:22 +0000 Subject: [PATCH] Revert "XANMOD: Makefile: Turn off loop vectorization for GCC -O3 optimization level" This reverts commit c5e3c667aa36fe5b154a811ef07241266ca61897. --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index e3382860a35ad..d5db1b24d309d 100644 --- a/Makefile +++ b/Makefile @@ -737,9 +737,6 @@ ifdef CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE KBUILD_CFLAGS += -O2 else ifdef CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE_O3 KBUILD_CFLAGS += -O3 -ifdef CONFIG_CC_IS_GCC -KBUILD_CFLAGS += -fno-tree-loop-vectorize -endif else ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE KBUILD_CFLAGS += -Os endif