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)
257Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 271if (block.Reachability == Reachability.NotReachable) 284if (block != null && block.Reachability == Reachability.NotReachable) 363if (newBranchBlock.Reachability == Reachability.NotReachable) 446block.Reachability = Reachability.NotReachable; 679if (current.NextBlock.Reachability == Reachability.NotReachable) 705current.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));