blob: de7f1806926919896634aa9da4d336da43ad23d8 [file] [log] [blame]
/* { dg-do compile } */
/* SIMD support can emit additional diagnostics. */
/* { dg-additional-options "-w" } */
__attribute__ ((simd)) int
tq (long int ea, int of, int kk)
{
int bc;
for (bc = 0; bc < 2; ++bc)
{
++ea;
of |= !!kk < !!ea;
}
return of;
}