]> git.gag.com Git - fw/sdcc/commitdiff
intermediate commit for AVR
authorsandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 8 Oct 2000 18:52:49 +0000 (18:52 +0000)
committersandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 8 Oct 2000 18:52:49 +0000 (18:52 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@451 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCast.c

index c64fcafbfd2f9889d82678edcc6297c15c2f3d02..893ad8b9a1357215c4016c5118a3bcf2e0e4ca05 100644 (file)
@@ -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)) &&