From: sandeep Date: Sat, 29 Apr 2000 22:28:33 +0000 (+0000) Subject: enabled somemore pointer post inc/dec optimizations X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=6589c842333036c96cf8dccf6abd5ca4f3070fb7;p=fw%2Fsdcc enabled somemore pointer post inc/dec optimizations git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@241 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCcse.c b/src/SDCCcse.c index fea12fb3..6a8771e6 100644 --- a/src/SDCCcse.c +++ b/src/SDCCcse.c @@ -1145,7 +1145,6 @@ int cseBBlock ( eBBlock *ebb, int computeOnly, /* if this is an assignment from true symbol to a temp then do pointer post inc/dec optimzation */ if (ic->op == '=' && !POINTER_SET(ic) && - IS_TRUE_SYMOP(IC_RIGHT(ic)) && IS_ITEMP(IC_RESULT(ic)) && IS_PTR(operandType(IC_RESULT(ic)))) { ptrPostIncDecOpt(ic); }