13 references to NotReachable
Microsoft.CodeAnalysis (13)
CodeGen\BasicBlock.cs (3)
465toRemove.Reachability = ILBuilder.Reachability.NotReachable; 469next.Reachability = Reachability.NotReachable; 668this.Reachability = Reachability.NotReachable;
CodeGen\ILBuilder.cs (7)
261Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 275if (block.Reachability == Reachability.NotReachable) 288if (block != null && block.Reachability == Reachability.NotReachable) 363if (newBranchBlock.Reachability == Reachability.NotReachable) 446block.Reachability = Reachability.NotReachable; 670if (current.NextBlock.Reachability == Reachability.NotReachable) 696current.Reachability = Reachability.NotReachable;
CodeGen\LocalScopeManager.cs (3)
439if (block.Reachability != Reachability.NotReachable) 484if (block.Reachability != Reachability.NotReachable) 772Debug.Assert((reachability == Reachability.Reachable) || (reachability == Reachability.NotReachable));