From: sandeep Date: Sun, 8 Oct 2000 18:52:49 +0000 (+0000) Subject: intermediate commit for AVR X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f99f847dd59930d98f2bbae6363b0859b8ee7d19;p=fw%2Fsdcc intermediate commit for AVR git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@451 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCast.c b/src/SDCCast.c index c64fcafb..893ad8b9 100644 --- a/src/SDCCast.c +++ b/src/SDCCast.c @@ -2230,7 +2230,7 @@ ast *decorateType (ast *tree) /*----------------------------*/ /* 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); @@ -2261,7 +2261,7 @@ ast *decorateType (ast *tree) /* 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)) &&