Imported Upstream version 2.9.0
[debian/cc1111] / 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 }