* src/mcs51/gen.c (outBitC, genRet): used IS_OP_RUONLY,
[fw/sdcc] / ChangeLog
index a5663054a8a275156696a6c77d92c90f51e5484c..603bcd9268873b7d5d0801ce3c82d3889d4b52d0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,72 @@
+2007-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/mcs51/gen.c (outBitC, genRet): used IS_OP_RUONLY,
+         (genNot, genXor): used toCarry, also fixes a bug for c = bit ^ val
+       * src/mcs51/ralloc.c: removed IS_OP_RUONLY + some cosmetic changes
+       * src/SDCCast.c (resultTypePropagate): propagate for '!',
+         (decorateType): also optimize comparisons with RESULT_TYPE_BIT,
+         bugfix: only use newBoolLink for bit result type
+       * src/SDCCicode.c (geniCodeLogic): added param tree,
+         bugfix: use newBoolLink if tree is bit type, bug appears when ruonly,
+         (geniCodeLogicAndOr): use IS_BIT,
+         (geniCodeJumpTable, geniCodeSwitch): added NULL param to geniCodeLogic,
+         (ast2iCode): added tree param to geniCodeLogic for comparisons
+       * src/SDCCsymt.h: added IS_OP_RUONLY and IS_OP_ACCUSE
+       * support/regression/tests/bug1723128.c: added test NotZero
+
+2007-06-01 Borut Razem <borut.razem AT siol.net>
+
+       * SDCPP synchronized with GCC CPP release version 4.2.0,
+         currently the latest release:
+       * support/cpp2/c-incpath.c, support/cpp2/c-incpath.h,
+         support/cpp2/c-ppoutput.c, support/cpp2/cppdefault.c,
+         support/cpp2/cppdefault.h, support/cpp2/except.h,
+         support/cpp2/libcpp/directives.c, support/cpp2/libcpp/expr.c,
+         support/cpp2/libcpp/files.c, support/cpp2/libcpp/include/cpplib.h,
+         support/cpp2/libcpp/init.c, support/cpp2/libcpp/internal.h,
+         support/cpp2/libcpp/lex.c, support/cpp2/libcpp/macro.c,
+         support/cpp2/libcpp/mkdeps.c, support/cpp2/libiberty/getpwd.c,
+         support/cpp2/libiberty/hashtab.c, support/cpp2/optc-gen.awk,
+         support/cpp2/opth-gen.awk, support/cpp2/opts.c,
+         support/cpp2/opts.h, support/cpp2/output.h,
+         support/cpp2/prefix.c, support/cpp2/sdcpp-opts.c,
+         support/cpp2/sdcpp.dsp, support/cpp2/sdcpp.opt,
+         support/cpp2/system.h, support/cpp2/version.c,
+         support/cpp2/Makefile.in: modified
+       * support/cpp2/opts-common.c: added
+       * device/lib/pic16/libdev/pic18f[24][45]j10.c: fixed svn atrributes
+       * device/lib/pic16/libdev/pic18f[24]5j10.c:
+         search for included source file in local directory
+       * sim/ucsim/configure, sim/ucsim/configure.in:
+         temporary solution to supress GCC 4.2.0 c++ warning:
+         deprecated conversion from string constant to `char *'
+
+2007-06-01 Raphael Neider <rneider AT web.de>
+
+       * device/lib/pic/libdev/pic12f683.c,
+       * device/include/pic/pic12f683.h: added GPIO bits
+
+2007-06-01 Raphael Neider <rneider AT web.de>
+
+       * doc/sdccman.lyx: added --disable-pic16-port, fixed some `--' and
+         quotation marks, clarified role of PIC14 vs. PIC16 ports
+       * src/pic16/devices.inc,
+       * device/include/pic16/pic18fregs.h,
+       * device/include/pic16/pic18f[24][45]j10.h,
+       * device/lib/pic16/pics.all,
+       * device/lib/pic16/libdev/pic18f[24][45]j10.c: added support for
+         18f24j10, 18f25j10, 18f44j10, and 18f45j10
+       * device/lib/pic16/libio/{i2c,adc,usart}.ignore: do not build IO libs
+         for new devices as they are not yet supported by gputils
+
+2007-05-31 Borut Razem <borut.razem AT siol.net>
+
+       * Small Device C Compiler 2.7.0 released
+       * .version, sdcc.spec, doc/sdccman.lyx, doc/INSTALL.txt:
+         changed sdcc version to 2.7.1
+       * support/scripts/sdcc.nsi: added How to create WIN32 release
+         setup.exe package
+
 2007-05-29 Maarten Brock <sourceforge.brock AT dse.nl>
 
        * doc/sdccman.lyx: documented initialization and allocation of absolute
        * src/regression/Makefile,
        * src/regression/pcodeopt.c: regression test for the above fix
 
-2007-05-08 Maarten Brock <sourceforge.brock AT dse.nl>
+2007-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
 
        * src/SDCCpeeph.c (labelIsUncondJump): ignore identical labels for
          jumps to self, fixed bug 1717281