From 1dfc915112adf32bf693546df3f12ce6d626164e Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 23 Jul 2013 09:29:32 +0000 Subject: [PATCH] Fix the previous commit. This happens if one picks up the commits in the wrong order... git-svn-id: https://svn.dealii.org/branches/releases/Branch-8-0@30127 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/setup_compiler_flags_gnu.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/deal.II/cmake/setup_compiler_flags_gnu.cmake b/deal.II/cmake/setup_compiler_flags_gnu.cmake index 1c64fcd104..63bf98e31a 100644 --- a/deal.II/cmake/setup_compiler_flags_gnu.cmake +++ b/deal.II/cmake/setup_compiler_flags_gnu.cmake @@ -125,9 +125,7 @@ IF (CMAKE_BUILD_TYPE MATCHES "Release") ADD_FLAGS(DEAL_II_CXX_FLAGS_RELEASE "-O2") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS_RELEASE "-funroll-loops") - IF(NOT(CMAKE_CXX_COMPILER_ID MATCHES "Clang")) - ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS_RELEASE "-funroll-all-loops") - ENDIF() + ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS_RELEASE "-funroll-all-loops") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS_RELEASE "-fstrict-aliasing") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS_RELEASE "-felide-constructors") -- 2.39.5