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