From 1030fe8a042404954b36511eb93e431655b8d772 Mon Sep 17 00:00:00 2001 From: Alexandre Frade Date: Fri, 18 Jun 2021 21:21:29 +0000 Subject: [PATCH] Revert "XANMOD: Makefile: Turn off loop vectorization for GCC -O3 optimization level" This reverts commit eaf2ff1ef9169bb5265cc087c4a1e862222f2055. --- 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