Comment and indentation changes

git-svn-id: svn://svn.cc65.org/cc65/trunk@3070 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2004-06-03 11:08:50 +00:00
parent 6e34e386cb
commit 763a359114

View File

@@ -121,13 +121,10 @@ static void DoConversion (ExprDesc* Expr, const type* NewType)
ED_MakeRValExpr (Expr);
}
} else {
} else if (ED_IsLocAbs (Expr)) {
/* We have an rvalue. Check for a constant. */
if (ED_IsLocAbs (Expr)) {
/* A cast of a constant to an integer. Be sure to handle sign
* extension correctly.
/* A cast of a constant numeric value to another type. Be sure
* to handle sign extension correctly.
*/
/* Get the current and new size of the value */
@@ -170,7 +167,6 @@ static void DoConversion (ExprDesc* Expr, const type* NewType)
ED_MakeRValExpr (Expr);
}
}
}
ExitPoint:
/* The expression has always the new type */