1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

Squashed one more bug in the switch statement

git-svn-id: svn://svn.cc65.org/cc65/trunk@816 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-07-24 20:19:03 +00:00
parent 0b08eb0e68
commit 8cd7b15c8b

View File

@ -329,6 +329,9 @@ static void CascadeSwitch (ExprDesc* Expr)
long Val; /* Case label value */
/* Get the unqualified type of the switch expression */
type ExprType = UnqualifiedType (Expr->Type[0]);
/* Create a loop so we may break out, init labels */
ExitLab = GetLocalLabel ();
AddLoop (oursp, 0, ExitLab, 0, 0);
@ -381,7 +384,7 @@ static void CascadeSwitch (ExprDesc* Expr)
/* Check the range of the expression */
Val = lval.ConstVal;
switch (*Expr->Type) {
switch (ExprType) {
case T_SCHAR:
/* Signed char */
@ -409,7 +412,7 @@ static void CascadeSwitch (ExprDesc* Expr)
break;
default:
Internal ("Invalid type: %02X", *Expr->Type & 0xFF);
Internal ("Invalid type: %04X", ExprType);
}
/* Emit a compare */