1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize" } */
3 
4 long int
nl(long int fy,int k3,int zr)5 nl (long int fy, int k3, int zr)
6 {
7   while (k3 < 1)
8     {
9       if (zr == 0)
10         fy = 0;
11 
12       fy *= fy < zr;
13       ++k3;
14     }
15 
16   return fy;
17 }
18