/* bug1551947.c */ #include __xdata float z; __xdata float x = 1.0; void testBug (void) { #if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory z = x * x; ASSERT (z == 1.0); #endif }