From e97c2538b601604b0529b650dd5d8b23b80d9f72 Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Sun, 3 Sep 2023 21:44:34 +0300 Subject: [PATCH] Tests: Fix building TestSIMD on non-SSE ABIs --- Tests/AK/TestSIMD.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/AK/TestSIMD.cpp b/Tests/AK/TestSIMD.cpp index 251904cbf2..2dbb362299 100644 --- a/Tests/AK/TestSIMD.cpp +++ b/Tests/AK/TestSIMD.cpp @@ -9,6 +9,9 @@ #include #include +// See the comment in +#pragma GCC diagnostic ignored "-Wpsabi" + TEST_CASE(exp) { AK::SIMD::f32x4 v = { .2f, .4f, .6f, .8f };