Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / pr17133.c
blob63352c07ac18af348dbfdbaade0be2e2fc5983ef
1 extern void abort (void);
3 int foo = 0;
4 void *bar = 0;
5 unsigned int baz = 100;
7 void *pure_alloc ()
9 void *res;
11 while (1)
13 res = (void *) ((((unsigned int) (foo + bar))) & ~1);
14 foo += 2;
15 if (foo < baz)
16 return res;
17 foo = 0;
21 int main ()
23 pure_alloc ();
24 if (!foo)
25 abort ();
26 return 0;