src/mcs51/gen.c (genPlus): added special handling for 256 byte aligned xdata arrays...
[fw/sdcc] / ChangeLog
index 9e8acf65d41b2212c2976d90e7632b98b8b676e8..6529c052fdf07a5e6694ccd9da62422ac72b3204 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,72 @@
+2003-12-22 Frieder Ferlemann <Frieder.Ferlemann@web.de>
+
+       * src/mcs51/gen.c (genPlus): added special handling for 256 byte 
+       aligned xdata arrays. Erik helped me with the if clause.
+
+2003-12-20 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
+       warning
+
+2003-12-20 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * src/SDCCast.h,
+       * src/SDCCast.c (newAst_),
+       * src/SDCCicode.h,
+       * src/SDCCicode.c (ast2iCode, newiCode),
+       * src/SDCCglobl.h,
+       * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
+       expr, statement, expression_statement, selection_statement,
+       iteration_statement, expr_opt, jump_statement): foundation for tracking
+       sequence points
+       * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
+       point code too)
+
+2003-12-19 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * support/Util/SDCCerr.c,
+       * src/SDCCast.h,
+       * src/SDCCast.c (createCase, createDefault, decorateType),
+       * src/SDCClabel.c (labelUnreach),
+       * src/SDCC.y (labeled_statement, jump_statement): More improvements
+       to error messages.
+       * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
+       (with thanks to Stas Sergeev)
+       * device/include/time.h,
+       * device/lib/time.c (CheckTime): suppress unreachable code warning
+
+2003-12-18 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * src/SDCCast.c (createIvalCharPtr),
+       * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
+       bug #753752)
+       * support/regression/tests/nullstring.c: tests for these two bugs
+
+2003-12-18 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * support/Util/SDCCerr.h,
+       * support/Util/SDCCerr.c (E_NOT_ALLOWED),
+       * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
+       about storage class and 'at' used inside struct or union
+       * src/SDCCBBlock.c (iCodeFromeBBlock),
+       * src/SDCCcse.c (ifxOptimize),
+       * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
+       printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
+       printIval, emitStaticSeg, emitOverlay),
+       * src/SDCClabel.c (deleteIfx),
+       * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
+       * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
+       gatherAutoInit, processParms),
+       * support/Util/SDCCerr.h,
+       * support/Util/SDCCerr.c (werrorfl): Support for better error location
+       reporting for post-parse errors.
+
+2003-12-16 Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
+       implicit casts via union; they don't work on big endian systems
+       (possible fix for bug #861138)
+
 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann@web.de>
 
        (committed by Erik Petrich <epetrich@ivorytower.norman.ok.us> on Frieder's behalf)