Changelog for preceding commit
[fw/sdcc] / ChangeLog
index ffddb6e3d20aa0507d4aec9affd8dabb9c515621..5edf271666206df9e74872815bd059f6249eb946 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,119 @@
+2008-04-19 Philipp Klaus Krause <pkk AT spth.de>
+       * src/SDCCpeeph.c (added support for notUsed()),
+       * src/mcs51/main.c (added dependency on peep.h, documented mcs51_port struct),
+       * src/port.h (removed dependency on mcs51/peep.h, added declaration for notUsed()):
+       Implemented generic (that is not port-specific) part of RFE #1880202.   
+
+2008-04-17 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * as/link/mcs51/lkmem.c (summary2): fixed bug 1796077
+       * device/lib/libsdcc.lib,
+       * device/lib/Makefile.in,
+       * support/regression/ports/mcs51-xstack-auto/spec.mk,
+       * device/lib/calloc.c: renamed to _calloc.c
+       * device/lib/free.c: renamed to _free.c
+       * device/lib/malloc.c: renamed to _malloc.c
+       * device/lib/realloc.c: renamed to _realloc.c
+       * src/ds390/gen.c (aopGet, aopPut, genPlusBits, genDataPointerSet,
+         genNearPointerSet, genPagedPointerSet): synchronized with mcs51/gen.c
+       * src/ds390/gen.c (popForBranch, genIfxJump, genCmp, genCmpEq, ifxForOp,
+         genAnd, genOr, genXor, genIfx, gen390Code): fixed bug 1509084
+       * src/mcs51/gen.c (popForBranch, genIfxJump, genCmp, genCmpEq,
+         ifxForOp, genAnd, genOr, genXor, genNearPointerGet,
+         genPagedPointerGet, genFarPointerGet, genCodePointerGet,
+         genGenPointerGet, genIfx, gen51Code): fixed bug 1509084
+       * src/ds390/gen.c,
+       * src/mcs51/gen.c: throughout cosmetic changes for syncing both
+       * src/SDCCsymt.h: updated IS_OP_RUONLY, IS_OP_ACCUSE
+       * support/regression/tests/bug1509084.c: new, added
+
+2008-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * device/include/mcs51/cc2510fx.h: added _XPAGE
+       * device/include/mcs51/compiler.h: cosmetic changes
+
+2008-03-31 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * sdcc.dsw: adapted for moved cpp2, added dependency for as_z80 on config
+
+2008-03-31 Borut Razem <borut.razem AT siol.net>
+
+       * support/cpp2 renamed to support/cpp
+       * support/cpp2/libiberty/filenames.h, support/cpp2/libiberty/hex.c,
+         support/cpp2/libiberty/splay-tree.c,
+         support/cpp2/libiberty/splay-tree.h, support/cpp2/libcpp/macro.c,
+         support/cpp2/libcpp/directives.c,
+         support/cpp2/libcpp/include/cpplib.h,
+         support/cpp2/libcpp/include/symtab.h,
+         support/cpp2/libcpp/include/line-map.h,
+         support/cpp2/libcpp/line-map.c, support/cpp2/libcpp/files.c,
+         support/cpp2/libcpp/init.c, support/cpp2/libcpp/traditional.c,
+         support/cpp2/libcpp/expr.c, support/cpp2/libcpp/internal.h,
+         support/cpp2/libcpp/lex.c, support/cpp2/libcpp/system.h,
+         support/cpp2/libcpp/charset.c: SDCPP synchronized with GCC CPP
+         release version 4.3.0
+       * configure.in, configure, Makefile.in, Makefile.bcc:
+         adapted for moved cpp2
+
+2008-03-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
+
+       * device/include/hc08/mc68hc908jkjl.h: committed fix for bug #1929739,
+         thanks Alejandro Pustowka <alejo_pustowka AT yahoo.com.mx>
+
+2008-03-30 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/SDCCloop.c (loopInvariants): applied fix for bug 1717943, thanks
+         Robert Larice
+       * support/regression/tests/bug1717943.c: new, added
+
+2008-03-30 Philipp Klaus Krause <pkk AT spth.de>
+       * src/z80/gen.c (assignResultValue): Reverted reversal of order of bytewise
+         return value assignments introduced in last commit.
+
+2008-03-30 Philipp Klaus Krause <pkk AT spth.de>
+       * src/z80/gen.c (emitDebug, assignResultValue, genPlus, genMinus, genMult,
+         genJumpTab):
+         Use 16-bit instructions for addition in some additional cases,
+         implemented RFEs #1914251, #1914245, #1922090, #1921382, #1918323.
+
+2008-03-30 Philipp Klaus Krause <pkk AT spth.de>
+       * src/z80/ralloc.c (serialRegAssign, allocReg, tryAllocatingRegPair):
+         Implemented RFE #1921450, changed some debug messages.
+
+2008-03-30 Borut Razem <borut.razem AT siol.net>
+
+       * Small Device C Compiler 2.8.0 released
+       * .version, doc/sdccman.lyx: changed sdcc version to 2.8.1
+       * support/scripts/sdcc.nsi: added finish page; this version
+         was used for 2.8.0 release
+       * doc/knownbugs.html: removed; magically generated by the build
+         process using gen_known_bugs.pl from now on
+
+2008-03-23 Borut Razem <borut.razem AT siol.net>
+
+       * src/pic/gen.h: Q&D solution for the bug, found by Jim Paris
+         and reverted it, since it was already fixed by Raphael ;-)
+       * doc/knownbugs.html: updated for RC2
+
+2008-03-22 Raphael Neider <rneider AT web.de>
+
+       * src/SDCCicode.c (getPtrType): avoid unnecessary extra assignments
+         for PIC16 targets
+
+2008-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/mcs51/gen.c (adjustArithmeticResult): fixed bug 1839299
+       * support/regression/tests/bug1839277.c: added related testBug1839299
+
+2008-03-21 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/ds390/gen.c (opIsGptr, adjustArithmeticResult, genAddrOf, genAssign),
+       * src/mcs51/gen.c (opIsGptr, adjustArithmeticResult, genAddrOf, genAssign):
+         fixed bug 1839277
+       * src/mcs51/gen.c: throughout only output hex constants
+       * src/SDCCicode.c (getPtrType, geniCodeCast): fixed code size regression
+       * support/regression/tests/bug1839277.c: new, added
+
 2008-03-21 Philipp Klaus Krause <pkk AT spth.de>
 
        * src/z80/ralloc.c (callFuncByName):