blob: e7f23aa7e50a9011eefc5343c7cc4a57152e2c28 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -mavx512f" } */
/* { dg-final { scan-assembler-times "vcvttsd2sil?\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+.{6}(?:\n|\[ \\t\]+#)" 1 } } */
/* { dg-final { scan-assembler-times "vcvttsd2sil?\[ \\t\]+\[^\{\n\]*\{sae\}\[^\n\]*%xmm\[0-9\]+.{6}(?:\n|\[ \\t\]+#)" 1 } } */
#include <immintrin.h>
volatile __m128d x;
volatile int y;
void extern
avx512f_test (void)
{
y = _mm_cvttsd_i32 (x);
y = _mm_cvtt_roundsd_i32 (x, _MM_FROUND_NO_EXC);
}