Temp fix for some address size problems

git-svn-id: svn://svn.cc65.org/cc65/trunk@2674 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-11-18 20:50:55 +00:00
parent aa7b723b15
commit cd918a387c
4 changed files with 28 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ void FreeExpr (ExprNode* Root);
ExprNode* SimplifyExpr (ExprNode* Expr);
/* Try to simplify the given expression tree */
ExprNode* GenLiteralExpr (long Val);
ExprNode* GenLiteralExpr (long Val);
/* Return an expression tree that encodes the given literal value */
ExprNode* GenSymExpr (struct SymEntry* Sym);
@@ -113,6 +113,9 @@ int IsByteRange (long Val);
int IsWordRange (long Val);
/* Return true if this is a word value */
int IsFarRange (long Val);
/* Return true if this is a far (24 bit) value */
ExprNode* CloneExpr (ExprNode* Expr);
/* Clone the given expression tree. The function will simply clone symbol
* nodes, it will not resolve them.