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-524685.c
blob
bfff635ac00455123989fe19906732161fccf70d
1
/* Division by powers of two.
2
*/
3
#include <testfwk.h>
4
5
void
6
testDivPow2
(
void
)
7
{
8
volatile
int
left
;
9
10
left
= -
18
;
11
ASSERT
(
left
/
4
== (-
18
/
4
));
12
}