Tests: Fix building TestSIMD on non-SSE ABIs

This commit is contained in:
Sergey Bugaev 2023-09-03 21:44:34 +03:00 committed by Andrew Kaster
parent 7bce0e5d1a
commit e97c2538b6
Notes: sideshowbarker 2024-07-17 09:49:48 +09:00

View File

@ -9,6 +9,9 @@
#include <AK/SIMD.h>
#include <AK/SIMDMath.h>
// See the comment in <AK/SIMDMath.h>
#pragma GCC diagnostic ignored "-Wpsabi"
TEST_CASE(exp)
{
AK::SIMD::f32x4 v = { .2f, .4f, .6f, .8f };