13 references to NotReachable
Microsoft.CodeAnalysis (13)
CodeGen\BasicBlock.cs (3)
464toRemove.Reachability = ILBuilder.Reachability.NotReachable; 468next.Reachability = Reachability.NotReachable; 667this.Reachability = Reachability.NotReachable;
CodeGen\ILBuilder.cs (7)
269Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 283if (block.Reachability == Reachability.NotReachable) 296if (block != null && block.Reachability == Reachability.NotReachable) 375if (newBranchBlock.Reachability == Reachability.NotReachable) 458block.Reachability = Reachability.NotReachable; 691if (current.NextBlock.Reachability == Reachability.NotReachable) 717current.Reachability = Reachability.NotReachable;
CodeGen\LocalScopeManager.cs (3)
439if (block.Reachability != Reachability.NotReachable) 484if (block.Reachability != Reachability.NotReachable) 774Debug.Assert((reachability == Reachability.Reachable) || (reachability == Reachability.NotReachable));