]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.dg/torture/simd20052.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / torture / simd20052.d
1 // { dg-additional-options "-mavx2" { target avx2_runtime } }
2 // { dg-do run { target { avx2_runtime || vect_sizes_32B_16B } } }
3 // { dg-skip-if "needs gcc/config.d" { ! d_runtime } }
4 import core.simd;
5
6 auto test20052()
7 {
8 struct S { long4 v; }
9 S s;
10 return s;
11 }
12
13 void main()
14 {
15 test20052();
16 }
17