1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-28 06:30:16 +00:00

Fixed code style

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

View File

@ -1099,14 +1099,14 @@ static ExprNode* Factor (void)
N = Function (FuncAddrSize);
break;
case TOK_ASIZE:
if (GetCPU() != CPU_65816) {
case TOK_ASIZE:
if (GetCPU () != CPU_65816) {
N = GenLiteralExpr (8);
} else {
N = GenLiteralExpr (ExtBytes [AM65I_IMM_ACCU] * 8);
N = GenLiteralExpr (ExtBytes[AM65I_IMM_ACCU] * 8);
}
NextTok ();
break;
NextTok ();
break;
case TOK_BLANK:
N = Function (FuncBlank);
@ -1141,14 +1141,14 @@ static ExprNode* Factor (void)
N = Function (FuncIsMnemonic);
break;
case TOK_ISIZE:
if (GetCPU() != CPU_65816) {
case TOK_ISIZE:
if (GetCPU () != CPU_65816) {
N = GenLiteralExpr (8);
} else {
N = GenLiteralExpr (ExtBytes [AM65I_IMM_INDEX] * 8);
N = GenLiteralExpr (ExtBytes[AM65I_IMM_INDEX] * 8);
}
NextTok ();
break;
break;
case TOK_LOBYTE:
N = Function (FuncLoByte);