/* { dg-do compile { target { ! ia32 } } } */ | |
/* { dg-options "-O2 -mavx512f" } */ | |
/* { dg-final { scan-assembler-times "vcvttsd2siq\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+.{6}(?:\n|\[ \\t\]+#)" 1 } } */ | |
/* { dg-final { scan-assembler-times "vcvttsd2siq\[ \\t\]+\[^\{\n\]*\{sae\}\[^\n\]*%xmm\[0-9\]+.{6}(?:\n|\[ \\t\]+#)" 1 } } */ | |
#include <immintrin.h> | |
volatile __m128d x; | |
volatile long long y; | |
void extern | |
avx512f_test (void) | |
{ | |
y = _mm_cvttsd_i64 (x); | |
y = _mm_cvtt_roundsd_i64 (x, _MM_FROUND_NO_EXC); | |
} |