1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Fixed wrong case in PreDec codegen, which never seems to be in use though.

This commit is contained in:
acqn 2020-04-16 17:17:52 +08:00 committed by Oliver Schmidt
parent 07a5324a81
commit 8066cd9ace

View File

@ -1569,7 +1569,7 @@ static void PreDec (ExprDesc* Expr)
case E_LOC_PRIMARY:
/* The primary register */
g_inc (Flags, Val);
g_dec (Flags, Val);
break;
case E_LOC_EXPR: