re PR tree-optimization/55569 (ICE: in check_probability, at basic-block.h:944 with...
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr55569.c
blob2a53c8039571ea3af08b67af455cdc42d9381b7e
1 /* { dg-options "-O1 -ftree-vectorize" } */
2 int *bar (void);
4 void
5 foo (void)
7 long x;
8 int *y = bar ();
9 for (x = -1 / sizeof (int); x; --x, ++y)
10 *y = 0;