From: MaartenBrock Date: Mon, 1 May 2006 21:45:34 +0000 (+0000) Subject: * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=a1e1e9f1036b29d61a0b48fa66aa66b65ed42a01;p=fw%2Fsdcc * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks Hubert Sack for patch 1479782 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4150 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index f6c93328..650e5d8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-05-01 Maarten Brock + + * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks + Hubert Sack for patch 1479782 + 2006-05-01 Vangelis Rokas * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929 @@ -33,7 +38,7 @@ * support/scripts/sdcc.nsi: removed all Readmes and Makefiles in the library source -2006-04-26 Maarten Brock +2006-04-30 Maarten Brock * support/regression/ports/hc08/spec.mk: fixed bug 1478892 diff --git a/src/SDCCglue.c b/src/SDCCglue.c index 671909ed..2e616548 100644 --- a/src/SDCCglue.c +++ b/src/SDCCglue.c @@ -369,7 +369,7 @@ emitRegularMap (memmap * map, bool addPublics, bool arFlag) if (options.debug) { fprintf (map->oFile, "==.\n"); } - if (IS_STATIC (sym->etype)) + if (IS_STATIC (sym->etype) || sym->level) tfprintf (map->oFile, "!slabeldef\n", sym->rname); else tfprintf (map->oFile, "!labeldef\n", sym->rname);