Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug-469671.c
1 /* bug 469671.c
2
3    storage: static, 
4  */
5 #include <testfwk.h>
6
7 void
8 testMul(void)
9 {
10   {storage} volatile int a, b;
11
12   a = 5;
13   b = a*2;
14   ASSERT(b == 10);
15
16   a = -33;
17   b = a*2;
18   ASSERT(b == -66);
19 }