(genGenPointerGet/Set): removed writing of type after postincrement
authorfrief <frief@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 19 Jul 2003 21:48:49 +0000 (21:48 +0000)
committerfrief <frief@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 19 Jul 2003 21:48:49 +0000 (21:48 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2760 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/mcs51/gen.c

index 4430a68fa633c5f456c926fdb133872ffe5a8504..80c01820113ab5c82d85047a1ff74eff3bbe0a02 100644 (file)
@@ -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);