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