blob: 5ec36049c3512f2e22a5b90f60c0f854649e648f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* bug-448984.c
*/
#include <testfwk.h>
void
testRshRem(void)
{
volatile int rem, quot;
quot = 4;
rem = 5000;
rem = rem - (quot*1024);
ASSERT(rem == 904);
}
|