X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCBBlock.h;h=68c29061404c96f5c38b2ef3cfbf12eff522c43a;hb=48dec0891e1e0e1a2178f4cbabf13a2548dbe379;hp=c455ed7b9798d8915a0cc71a2a3a48c20b48e353;hpb=ae9745e130a411ca3397c5ae40371c6305192f58;p=fw%2Fsdcc diff --git a/src/SDCCBBlock.h b/src/SDCCBBlock.h index c455ed7b..68c29061 100644 --- a/src/SDCCBBlock.h +++ b/src/SDCCBBlock.h @@ -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 */