PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / simd-7.c
blob42feccb209d34bc738a65645315d37accf0be189
1 /* { dg-do compile } */
2 /* { dg-options "-w -Wno-psabi" } */
4 #if __SIZEOF_LONG_DOUBLE__ == 16 || __SIZEOF_LONG_DOUBLE__ == 8
5 typedef long double a __attribute__((vector_size (16)));
7 a __attribute__((noinline))
8 sum (a first, a second)
10 return first + second;
14 foo (a x, a y, a z)
16 return sum (x, y) + z;
18 #else
19 int main() {}
20 #endif