6 /* bit types are not ANSI - so provide a way of disabling bit types
7 * if this file is used to test other compilers besides SDCC */
8 #define SUPPORT_BIT_TYPES 0
10 /* Some compilers that support bit types do not support bit arithmetic
11 * (like bitx = bity + bitz;) */
12 #define SUPPORT_BIT_ARITHMETIC 0
31 unsigned int aint0
= 0;
32 unsigned int aint1
= 0;
33 unsigned char achar0
= 0;
34 unsigned char achar1
= 0;
35 unsigned char *acharP
= 0;
50 ASSERT (!(struct1
.c0
|| struct1
.c1
));
54 ASSERT (!(struct1
.c0
!= 1));
60 achar0
= struct1
.c0
+ struct1
.c1
;
62 ASSERT(!(achar0
!= 1));
73 // ptr_to_struct (&struct1);