Fixed code style

This commit is contained in:
Marcus Rowe
2015-10-24 01:07:47 +10:00
parent 67cd0c2197
commit 25e0b157be

View File

@@ -1100,10 +1100,10 @@ static ExprNode* Factor (void)
break;
case TOK_ASIZE:
if (GetCPU() != CPU_65816) {
if (GetCPU () != CPU_65816) {
N = GenLiteralExpr (8);
} else {
N = GenLiteralExpr (ExtBytes [AM65I_IMM_ACCU] * 8);
N = GenLiteralExpr (ExtBytes[AM65I_IMM_ACCU] * 8);
}
NextTok ();
break;
@@ -1142,10 +1142,10 @@ static ExprNode* Factor (void)
break;
case TOK_ISIZE:
if (GetCPU() != CPU_65816) {
if (GetCPU () != CPU_65816) {
N = GenLiteralExpr (8);
} else {
N = GenLiteralExpr (ExtBytes [AM65I_IMM_INDEX] * 8);
N = GenLiteralExpr (ExtBytes[AM65I_IMM_INDEX] * 8);
}
NextTok ();
break;