From 63ac531e76e83b9ed43cfd8e77d7b9f8defce1fe Mon Sep 17 00:00:00 2001 From: sandeep Date: Sat, 21 Oct 2000 21:52:14 +0000 Subject: [PATCH] fixed a push/pop problem git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@482 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/mcs51/gen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.47.2