From 6589c842333036c96cf8dccf6abd5ca4f3070fb7 Mon Sep 17 00:00:00 2001 From: sandeep Date: Sat, 29 Apr 2000 22:28:33 +0000 Subject: [PATCH] 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 --- src/SDCCcse.c | 1 - 1 file changed, 1 deletion(-) 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); } -- 2.47.2