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
/
constmodifiers.c
blob
f64dc7769e98dba30257c92d64c56c5e1a62fffa
1
/* Tests usage of constant modifiers.
2
*/
3
#include <testfwk.h>
4
5
void
6
testUMod
(
void
)
7
{
8
volatile
unsigned char
a
=
0
;
9
10
ASSERT
((
a
|=
0xFF
L
) ==
0xFF
L
);
11
}