Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-921019-2.c
blobd54602c948863a56bf7fe899e3a0c921cadea753
1 /*
2 921019-2.c from the execute part of the gcc torture suite.
3 */
5 #include <testfwk.h>
7 #ifdef __SDCC
8 #pragma std_c99
9 #pragma disable_warning 93
10 #endif
12 void
13 testTortureExecute (void)
15 double x,y=0.5;
16 x=y/0.2;
17 if(x!=x)
18 ASSERT(0);
19 return;