Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
// IWYU pragma: private
#include "../InternalHeaderCheck.h"

// GCC on ARM (aarch64) emits false-positive -Wmaybe-uninitialized warnings
// in the vectorized selfadjoint matrix-vector product kernel.
#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif

namespace Eigen {

namespace internal {
Expand Down Expand Up @@ -250,4 +257,8 @@ struct selfadjoint_product_impl<Lhs, 0, true, Rhs, RhsMode, false> {

} // end namespace Eigen

#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC diagnostic pop
#endif

#endif // EIGEN_SELFADJOINT_MATRIX_VECTOR_H
Loading