Remove support for Intel classic compiler
[alexxy/gromacs.git] / src / gromacs / nbnxm / pairlist.cpp
index 4c6a529dedfcf41bb727cf98a4f5f5c135852d0a..a53233c2e1e8b84d89befe69d6da5ce2b9e4334b 100644 (file)
@@ -2,7 +2,7 @@
  * This file is part of the GROMACS molecular simulation package.
  *
  * Copyright (c) 2012,2013,2014,2015,2016 by the GROMACS development team.
- * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2017,2018,2019,2020,2021, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -3745,7 +3745,7 @@ static void copySelectedListRange(const nbnxn_ci_t* gmx_restrict srcCi,
     }
 }
 
-#if defined(__GNUC__) && !defined(__clang__) && !defined(__ICC) && __GNUC__ == 7
+#if defined(__GNUC__) && !defined(__clang__) && __GNUC__ == 7
 /* Avoid gcc 7 avx512 loop vectorization bug (actually only needed with -mavx512f) */
 #    pragma GCC push_options
 #    pragma GCC optimize("no-tree-vectorize")
@@ -3766,7 +3766,7 @@ static int countClusterpairs(gmx::ArrayRef<const NbnxnPairlistCpu> pairlists)
     return ncjTotal;
 }
 
-#if defined(__GNUC__) && !defined(__clang__) && !defined(__ICC) && __GNUC__ == 7
+#if defined(__GNUC__) && !defined(__clang__) && __GNUC__ == 7
 #    pragma GCC pop_options
 #endif