* src/mcs51/peep.c (isCallerSaveFunc): fixed bug 1749275, thanks Robert
[fw/sdcc] / support / regression / tests / bug1734654.c
1 /* bug1734654.c
2  */
3 #include <testfwk.h>
4 #include <stdbool.h>
5
6 volatile bool b;
7 volatile unsigned char c = 1;
8
9 static void foo (void)
10 {
11   b = (c<2);
12 }
13
14 void
15 testMyFunc(void)
16 {
17   foo ();
18   ASSERT (b);
19 }