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)
259Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 273if (block.Reachability == Reachability.NotReachable) 286if (block != null && block.Reachability == Reachability.NotReachable) 365if (newBranchBlock.Reachability == Reachability.NotReachable) 448block.Reachability = Reachability.NotReachable; 681if (current.NextBlock.Reachability == Reachability.NotReachable) 707current.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));