Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug1551947.c
1 /*
2    bug1551947.c
3 */
4
5 #include <testfwk.h>
6
7 xdata float z;
8 xdata float x = 1.0;
9
10 void
11 testBug(void)
12 {
13     z = x * x;
14     ASSERT( z == 1.0 );
15 }