]> git.gag.com Git - fw/sdcc/blob - support/regression/tests/bug-448984.c
* as/hc08/lkaomf51.c (OutputName),
[fw/sdcc] / support / regression / tests / bug-448984.c
1 /* bug-448984.c
2  */
3 #include <testfwk.h>
4
5 void
6 testRshRem(void)
7 {
8   volatile int rem, quot;
9
10   quot = 4;
11   rem = 5000;
12
13   rem = rem - (quot*1024);
14
15   ASSERT(rem == 904);
16 }