From: borutr Date: Sat, 24 Jun 2006 20:49:06 +0000 (+0000) Subject: * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=d5fbaf92d9305d15b8f4ea659cda6036d5277dbb;p=fw%2Fsdcc * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16 to the list of sdcc tagrets not supporting bit type * sdcc/support/regression/tests/bug-905992.c.c: excluded regression testfor pic16 due to bug: [ 1511794 ] pic16: regression test bug-895992.c fails git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4248 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 8adac5bd..a91877cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,22 @@ +2006-06-24 Borut Razem + + * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16 + to the list of sdcc tagrets not supporting bit type + * sdcc/support/regression/tests/bug-905992.c.c: excluded regression + testfor pic16 due to bug: + [ 1511794 ] pic16: regression test bug-895992.c fails + 2006-06-24 Maarten Brock * src/mcs51/gen.c (genCmp): optimization for RFE 1162453 * src/SDCCglue.c (initPointer), fixed bug 1496419 * support/regression/tests/bug1496419.c: new, added +2006-06-22 Borut Razem + + * support/regression/ports/pic16/support.c: use gpsim usart module from + libgpsim_modules library + 2006-06-21 Jesus Calvino-Fraga * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed diff --git a/support/regression/tests/bitvars.c b/support/regression/tests/bitvars.c index abe33473..c40e43eb 100644 --- a/support/regression/tests/bitvars.c +++ b/support/regression/tests/bitvars.c @@ -10,7 +10,8 @@ #pragma disable_warning 180 //no warning about using complement on bit/unsigned char #endif -#if defined (SDCC_hc08) || defined (SDCC_z80) +#if defined (SDCC_hc08) || defined (SDCC_z80) || defined (SDCC_gbz80) || defined (SDCC_pic14) || defined (SDCC_pic16) +/* sdcc tagrets not supporting bit type */ #define NO_BITS #endif diff --git a/support/regression/tests/bug-895992.c b/support/regression/tests/bug-895992.c index a0cb9d6b..77018e07 100644 --- a/support/regression/tests/bug-895992.c +++ b/support/regression/tests/bug-895992.c @@ -30,6 +30,11 @@ wait (void) static void testLR(void) { +/* + * excluded for pic16 due to bug: + * [ 1511794 ] pic16: regression test bug-895992.c fails + */ +#ifndef SDCC_pic16 unsigned char number; unsigned char start = 1; unsigned char i; @@ -51,4 +56,5 @@ testLR(void) while (number != 0); ASSERT(loops == p0); +#endif }