repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-448984.c
blob
5ec36049c3512f2e22a5b90f60c0f854649e648f
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
}