From 3849998dc133eed9df3d277f7efd3923cf63c127 Mon Sep 17 00:00:00 2001 From: johanknol Date: Sun, 18 Mar 2001 17:58:53 +0000 Subject: [PATCH] Temporary fix for the sym->ival related "code struct *" bug. git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@691 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCglue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDCCglue.c b/src/SDCCglue.c index 3d88ce6d..26715431 100644 --- a/src/SDCCglue.c +++ b/src/SDCCglue.c @@ -994,7 +994,7 @@ emitStaticSeg (memmap * map, FILE * out) fprintf (out, " == .\n"); /* if it has an initial value */ - if (sym->ival) + if (!TARGET_IS_MCS51 && !TARGET_IS_DS390 && sym->ival) { fprintf (out, "%s:\n", sym->rname); noAlloc++; -- 2.47.2