libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / bb-slp-pr101756.c
blobde7f1806926919896634aa9da4d336da43ad23d8
1 /* { dg-do compile } */
2 /* SIMD support can emit additional diagnostics. */
3 /* { dg-additional-options "-w" } */
5 __attribute__ ((simd)) int
6 tq (long int ea, int of, int kk)
8 int bc;
10 for (bc = 0; bc < 2; ++bc)
12 ++ea;
13 of |= !!kk < !!ea;
16 return of;