tree-optimization/115597 - allow CSE of two-operator VEC_PERM nodes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000205-1.c
blob9fd602c68e6ed0197fdaa3f65a26cbd485f3d398
1 void abort (void);
2 void exit (int);
4 static int f (int a)
6 if (a == 0)
7 return 0;
8 do
9 if (a & 128)
10 return 1;
11 while (f (0));
12 return 0;
15 int main(void)
17 if (f (~128))
18 abort ();
19 exit (0);