* device/lib/large/Makefile: fixed parallel execution by replacing `make` by `$(MAKE)`
[fw/sdcc] / src / SDCCBBlock.h
index c455ed7b9798d8915a0cc71a2a3a48c20b48e353..8f0429c7666a3888ea91ff2cbe67eb4aa7f41a30 100644 (file)
@@ -38,7 +38,7 @@ typedef struct eBBlock
     unsigned int hasFcall:1;   /* has a function call */
     unsigned int noPath:1;     /* there is no path from _entry to this block */
     unsigned int isLastInLoop:1;       /* is the last block in a loop */
-    unsigned int hasConditionalExit; /* this block ends with a return or goto from a conditional block*/
+    struct eBBlock *isConditionalExitFrom; /* this block ends with a return or goto from a conditional block*/
     symbol *entryLabel;                /* entry label */
 
     iCode *sch;                        /* pointer to start of code chain */
@@ -56,6 +56,7 @@ typedef struct eBBlock
     /* data flow analysis */
     set *inExprs;              /* in coming common expressions    */
     set *outExprs;             /* out going common expressions    */
+    set *killedExprs;          /* killed common expressions       */
     bitVect *inDefs;           /* in coming defintions            */
     bitVect *outDefs;          /* out going defintions            */
     bitVect *defSet;           /* symbols defined in block        */