LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / vector-2b_main.c
blob2c195764249a6c6765bca645aef072bd145cd0d9
1 /* { dg-skip-if "test AVX support" { ! { i?86-*-* x86_64-*-* } } } */
2 /* { dg-require-effective-target avx_runtime } */
4 /* Test compatibility of vector types: layout between separately-compiled
5 modules, parameter passing, and function return. This test uses
6 vectors of floating points values. */
8 extern void vector_2_x (void);
9 extern void exit (int);
10 int fails;
12 int
13 main ()
15 vector_2_x ();
16 exit (0);