From cb3db55b4256c2f014c9ea1f9c96030b591e580b Mon Sep 17 00:00:00 2001 From: frief Date: Sat, 19 Jul 2003 21:48:49 +0000 Subject: [PATCH] (genGenPointerGet/Set): removed writing of type after postincrement git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2760 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/mcs51/gen.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mcs51/gen.c b/src/mcs51/gen.c index 4430a68f..80c01820 100644 --- a/src/mcs51/gen.c +++ b/src/mcs51/gen.c @@ -7618,7 +7618,6 @@ genGenPointerGet (operand * left, if (pi && AOP_TYPE (left) != AOP_IMMD && AOP_TYPE (left) != AOP_STR) { aopPut ( AOP (left), "dpl", 0); aopPut ( AOP (left), "dph", 1); - aopPut ( AOP (left), "b", 2); pi->generated = 1; } freeAsmop (left, NULL, ic, TRUE); @@ -8227,7 +8226,6 @@ genGenPointerSet (operand * right, if (pi && AOP_TYPE (result) != AOP_STR && AOP_TYPE (result) != AOP_IMMD) { aopPut (AOP(result),"dpl",0); aopPut (AOP(result),"dph",1); - aopPut (AOP(result),"b",2); pi->generated=1; } freeAsmop (result, NULL, ic, TRUE); -- 2.47.2