From 04c71a6209065d1e107612e1bdb74638dcdd2aa4 Mon Sep 17 00:00:00 2001 From: Yang Hau Date: Sat, 24 Aug 2024 17:46:00 +0800 Subject: [PATCH] wip --- tests/impl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/impl.cpp b/tests/impl.cpp index 7b52ba52..351a300e 100644 --- a/tests/impl.cpp +++ b/tests/impl.cpp @@ -11804,6 +11804,7 @@ static int popcnt_reference(uint64_t a) result_t test_mm_popcnt_u32(const SSE2NEONTestImpl &impl, uint32_t iter) { const uint64_t *a = (const uint64_t *) impl.mTestIntPointer1; + printf("mm_popcnt_u32\n"); ASSERT_RETURN(popcnt_reference((uint32_t) a[0]) == _mm_popcnt_u32((unsigned int) a[0])); return TEST_SUCCESS;