Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / pr12517.c
blobaf82db8f46a3ea1c70f2c56a4170c26c754cf823
1 /* PR tree-optimization/12517 */
3 int f(void);
4 void g(int);
5 void h(int a, int b, int c)
7 int i = f();
9 if (b && (i & 4))
10 g(i & 8 ? 0 : 1);
11 if (a) {
12 do {
13 if (i & 8)
14 g(0);
15 if (i & 4)
16 g(i ? 0 : 1);
17 } while (--c);