Rewrote expression evaluation. More smaller changes.
git-svn-id: svn://svn.cc65.org/cc65/trunk@2638 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -673,8 +673,8 @@ static long PutImmed8 (const InsDesc* Ins)
|
||||
}
|
||||
|
||||
/* If we have an expression and it's const, get it's value */
|
||||
if (A.Expr && IsConstExpr (A.Expr)) {
|
||||
Val = GetExprVal (A.Expr);
|
||||
if (A.Expr) {
|
||||
(void) IsConstExpr (A.Expr, &Val);
|
||||
}
|
||||
|
||||
/* Check how many extension bytes are needed and output the instruction */
|
||||
|
||||
Reference in New Issue
Block a user