PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr40550.c
blob0de5554b1433a09484e393b0fb41e920a3530bea
1 /* { dg-do run } */
2 /* { dg-options "" } */
3 /* { dg-additional-options "-msse" { target i?86-*-* x86_64-*-* } } */
4 /* { dg-require-effective-target sse_runtime { target { i?86-*-* x86_64-*-* } } } */
6 typedef float v2sf __attribute__ ((vector_size (2 * sizeof(float))));
8 static void test (void)
10 v2sf a = {1.0, 0.0};
11 v2sf b = {0.0, 1.0};
12 v2sf d;
13 d = a + b;
16 int main ()
18 test ();
19 return 0;