From fc95d1601a308944337f3ca1e2b0dee176fdec0a Mon Sep 17 00:00:00 2001 From: sandeep Date: Sat, 4 Mar 2000 23:37:41 +0000 Subject: [PATCH] inc & dec op added git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@150 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDCCast.h b/src/SDCCast.h index 8c2ca162..2306354f 100644 --- a/src/SDCCast.h +++ b/src/SDCCast.h @@ -145,7 +145,7 @@ typedef struct ast { #define IS_ASSIGN_OP(x) ( x == '=' || x == ADD_ASSIGN || x == SUB_ASSIGN ||\ x == MUL_ASSIGN || x == DIV_ASSIGN || x == XOR_ASSIGN ||\ - x == AND_ASSIGN || x == OR_ASSIGN) + x == AND_ASSIGN || x == OR_ASSIGN || x == INC_OP || x == DEC_OP) #define IS_DEREF_OP(x) (( x->opval.op == '*' && x->right == NULL) || x->opval.op == '.') /* forward declrations for global variables */ -- 2.30.2