* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / scev-1.c
blobb959fa17b2c3f2a76942192fb31d71a42e6a2ad8
1 /* PR tree-optimization/19899 */
2 /* Decrementing a floating-point variable in a loop caused an ICE. */
4 /* { dg-do run } */
5 /* { dg-options "-O -ftree-vectorize" } */
7 extern void abort (void);
9 int main()
11 float i=1;
13 while (i>=0)
14 --i;
16 if (i != -1)
17 abort();
18 return 0;