CSPspEmu.Core.Cpu.Dynarec.DynarecFunctionCompiler.InternalFunctionCompiler.TryPutLabelAT C# (CSharp) Метод

TryPutLabelAT() приватный Метод

private TryPutLabelAT ( uint PC, AstNodeStmContainer Nodes ) : void
PC uint
Nodes SafeILGenerator.Ast.Nodes.AstNodeStmContainer
Результат void
            private void TryPutLabelAT(uint PC, AstNodeStmContainer Nodes)
            {
                if (Labels.ContainsKey(PC))
                {
                    Nodes.AddStatement(EmitInstructionCountIncrement(false));
                    Nodes.AddStatement(ast.Label(Labels[PC]));
                }
                if (LabelsJump.ContainsKey(PC)) Nodes.AddStatement(ast.Label(LabelsJump[PC]));
            }