]> git.gag.com Git - fw/sdcc/blobdiff - src/SDCCast.c
Extended the semantics of the critical keyword to include
[fw/sdcc] / src / SDCCast.c
index 0c160a1bc7c0eb2d167eab9fd92813b7f144002d..7db25f4f605307e2121778c99db5acee13d8b065 100644 (file)
@@ -5505,6 +5505,9 @@ void ast_print (ast * tree, FILE *outfile, int indent)
                fprintf(outfile,"FOR LOOP BODY \n");
                ast_print(tree->left,outfile,indent+2);
                return ;
+       case CRITICAL:
+               fprintf(outfile,"CRITICAL (%p) \n",tree);
+               ast_print(tree->left,outfile,indent+2);
        default:
            return ;
        }