1 /*
2    960219-1.c from the execute part of the gcc torture suite.
3  */
4 
5 #include <testfwk.h>
6 
7 #ifdef __SDCC
8 #pragma std_c99
9 #endif
10 
f(int i)11 f (int i)
12 {
13   if (((1 << i) & 1) == 0)
14     ASSERT (0);
15 }
16 
17 void
testTortureExecute(void)18 testTortureExecute (void)
19 {
20   f (0);
21   return;
22 }
23 
24