Beispiel #1
0
        public BasicBlock(int index)
        {
            Operations   = new IntrusiveList <Operation>();
            Predecessors = new List <BasicBlock>();

            Index = index;
        }
Beispiel #2
0
        public BasicBlock(int index)
        {
            Operations         = new IntrusiveList <Node>();
            Predecessors       = new List <BasicBlock>();
            DominanceFrontiers = new HashSet <BasicBlock>();

            Index = index;
        }