Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / pr20412.c
bloba165a921ac28a09910f9b5b03b8b0c6f725f115b
1 int
2 foo(void)
4 int a,b,g;
5 int i,len;
6 int stop;
8 len = 10;
9 stop = 0;
10 for (i=0; i<len; i++)
12 a = bar1() ? 0 : 1;
13 b = bar2() ? 0 : 1;
14 g = bar3() ? 0 : 1;
16 if (stop = ((a+b) % 2 != g)) break;
19 return stop;