git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@451
4a8a32a2-be11-0410-ad9d-
d568d2c75423
/*----------------------------*/
/* casting */
/*----------------------------*/
- case CAST : /* change the type */
+ case CAST: /* change the type */
/* cannot cast to an aggregate type */
if (IS_AGGREGATE(LTYPE(tree))) {
werror(E_CAST_ILLEGAL);
/* logical &&, || */
/*----------------------------*/
case AND_OP:
- case OR_OP :
+ case OR_OP:
/* each must me arithmetic type or be a pointer */
if (!IS_PTR(LTYPE(tree)) &&
!IS_ARRAY(LTYPE(tree)) &&