summaryrefslogtreecommitdiff
path: root/numpy/distutils/checks/cpu_sse42.c
blob: 24f5d93fe1d49131241d5e873b4d1d4dd7cfbf86 (plain)
1
2
3
4
5
6
7
#include <smmintrin.h>

int main(void)
{
    __m128 a = _mm_hadd_ps(_mm_setzero_ps(), _mm_setzero_ps());
    return (int)_mm_cvtss_f32(a);
}