PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr78227-1.c
blob9dc97dd738f46b47b010bbb9b052f95db8aaa21e
1 /* PR target/78227 */
2 /* { dg-do compile } */
3 /* { dg-options "-mavx512f -O0 -Wno-psabi" } */
5 typedef int V __attribute__((vector_size (64)));
6 typedef long long int W __attribute__((vector_size (64)));
9 foo1 (V v)
11 return v > 0;
15 bar1 (V v)
17 return v != 0;
21 foo2 (W w)
23 return w > 0;
27 bar2 (W w)
29 return w != 0;