ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.dg/simd7951.d

23 lines
446 B
D
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
// https://issues.dlang.org/show_bug.cgi?id=7951
// { dg-additional-options "-mavx" { target avx_runtime } }
// { dg-do compile { target { avx_runtime || vect_sizes_16B_8B } } }
import core.simd;
float[4] test7951()
{
float4 v1;
float4 v2;
return cast(float[4])(v1+v2);
}
void test7951_2()
{
float[4] v1 = [1,2,3,4];
float[4] v2 = [1,2,3,4];
float4 f1, f2, f3;
f1.array = v1;
f2.array = v2;
f3 = f1 + f2;
}