* src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears xdata and data memor...
[fw/sdcc] / ChangeLog
index d5689de03526c2b27d271a4a55b7ab147a5bfcb1..166996d4ac691b648c0cdd8d413e44cc087b82bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,29 @@
+2003-12-13 Frieder Ferlemann <Frieder.Ferlemann@web.de>
+
+       * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears 
+       xdata and data memory on startup. Set the environment variable 
+       SDCC_NOGENRAMCLEAR to disable this.
+       * src/ds390/peephole.def: using the atomic test and clear instruction jbc
+       (allows non-interrupt and interrupt code to safely compete for a resource
+       without the non-interrupt code having to disable interrupts)
+
+2003-12-13 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * src/SDCCicode.c (geniCodeAdd),
+       * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
+       with valFromType if type might be a pointer and host is big endian).
+       * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
+       types, not just integer types.
+       * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
+       multiply defined with mismatching "at" address.
+
+2003-12-12 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * src/ds390/main.c (PORT tininative_port): fixed bug #858416
+       * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
+       * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
+       with embedded nulls (fixed bug #753752)
+
 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann@web.de>
 
        * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.