From: sandeep Date: Sat, 21 Oct 2000 21:52:14 +0000 (+0000) Subject: fixed a push/pop problem X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=63ac531e76e83b9ed43cfd8e77d7b9f8defce1fe;p=fw%2Fsdcc fixed a push/pop problem git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@482 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/mcs51/gen.c b/src/mcs51/gen.c index 49dfe21a..b468463f 100644 --- a/src/mcs51/gen.c +++ b/src/mcs51/gen.c @@ -7119,7 +7119,7 @@ static void genAssign (iCode *ic) } release: - freeAsmop (right,NULL,ic,FALSE); + freeAsmop (right,NULL,ic,TRUE); freeAsmop (result,NULL,ic,TRUE); }