]> git.gag.com Git - fw/sdcc/blob - support/regression/tests/constmodifiers.c
* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / support / regression / tests / constmodifiers.c
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 |= 0xFFL) == 0xFFL);
11 }