* src/SDCCglue.c (tempfileandname): changed un*x tmp search paths to /tmp and /var...
[fw/sdcc] / ChangeLog
index 921d5e8fb3099e4ccaf41a41d3d76cc979fab98b..56a0ceaa66820e33e3b15c6a6a95073129725462 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,103 @@
+2006-10-06 Bernhard Held <bernhard AT bernhardheld.de>
+
+       * src/SDCCglue.c (tempfileandname): changed un*x tmp search paths
+       to /tmp and /var/tmp acc. LSB
+       * src/SDCCast.c (addCast): Fixed bug 1571231: promote in case of
+       RESULT_TYPE_IFX
+       * support/regression/tests/onebyte.c: added test
+
+2006-10-05 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
+
+       * src/mcs51/gen.c: emitcode for "add a,0x%02x" requires only 8 bits.
+
+2006-10-05 Borut Razem <borut.razem AT siol.net>
+
+       * partially fixed [ 1570701 ] peephole - not replacing code from multiline macros,
+         thanks to dfulab:
+         - sdcc.dsw: changed property eol-style to CRLF
+         - support/scripts/resource.rc: replaced references to "afxres.h" with "winres.h"
+
+2006-10-04 Raphael Neider <rneider AT web.de>
+
+       * device/include/pic/{pic16f84.h,pic16f84a.h},
+       * device/lib/pic/libdev/{pic16f84.c,pic16f84a.c}: added PORT[AB]_bits
+         from patch #1522504, thanks to Robas Teodor
+
+2006-10-02 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * as/link/z80/lkarea.c: essentially reverted lnksect() to #4380 which
+         fixes bug 1566015
+
+2006-10-01 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/pic16/glue.c (pic16emitMaps),
+       * src/pic/glue.c (pic14emitMaps): hopefully fixed bug 1568779
+       * device/lib/gets.c: fixed bug 1568829,thanks Philipp Krause
+       * device/lib/pic16/libc/string/memcpypgm2ram.c,
+       * device/lib/pic16/libc/string/memcpyram2ram.c: fixed bug 1568836, thanks
+         Philipp Krause
+       * as/mcs51/asmain.c (asmbl, newdot): fixed problems with absolute areas
+       * as/link/mcs51/lkmem.c (summary2): reverted, do do count abs segments
+
+2006-09-30 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
+
+       * support/librarian/sdcclib.c: Added option -l.
+       * as/link/mcs51/lkmem.c: don't use absolute segments to compute memory
+         usage totals.
+       * device/lib/make51lib.bat: added.  Allows building mcs51 libraries easily
+         using Windows command prompt.
+
+2006-09-30 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * device/lib/libsdcc.lib: added module rand
+       * src/ds390/ralloc.c (rematStr),
+       * src/hc08/ralloc.c (rematStr),
+       * src/mcs51/ralloc.c (rematStr),
+       * src/z80/ralloc.c (rematStr): made output more consistent
+       * src/mcs51/gen.c: cosmetic changes
+
+2006-09-30 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/port.h: added mem.cabs_name to PORT
+       * src/ds390/main.c,
+       * src/hc08/main.c,
+       * src/mcs51/main.c,
+       * src/pic16/main.c,
+       * src/pic/main.c,
+       * src/xa51/main.c,
+       * src/z80/main.c: added cabs_name initializers
+       * src/SDCCglue.c (emitStaticSeg): allocate and initialize absolute
+         constants
+         (emitMaps): emit absolutes in code memory into cabs_name
+       * src/SDCCmem.c,
+       * src/SDCCmem.h: added memory map c_abs and defined CABS_NAME
+       * src/ds390/gen.c (genCodePointerGet): fixed bug if left is a literal
+       * support/regression/fwk/include/testfwk.h: added define for at
+       * support/regression/tests/absolute.c: added, new
+
+2006-09-29 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/mcs51/gen.c (genPlusIncr, genMinusDec, genAddrOf): small
+         optimizations, see also patch 887161 by Stas Sergeev
+       * src/mcs51/peeph.def(104, 207, 209, 212): disabled as they do not seem
+         to be necessary anymore,
+         (102, 103, 104, 127): renamed all occurances of bp to _bp
+
+2006-09-27 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * device/include/mcs51/at89c51snd1c.h: fixed MSK_SREQ definition
+         thanks Weston T. Schmidt for patch 1555221
+       * src/mcs51/peeph.def: renamed rule 257 to 257.a, added 257.b
+       * src/SDCCicode.c(geniCodeMultiply): small optimization
+
 2006-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
 
        * device/include/stdlib.h: added rand prototypes
        * device/lib/rand.c: new, added
        * device/lib/Makefile.in: added rand.c
+       * src/z80/peeph.def,
+       * src/z80/peeph-gbz80.def,
+       * src/z80/peeph-z80.def: updated conditonals, fixed bug 1565908
 
 2006-09-20 Raphael Neider <rneider AT web.de>