From dffd201cfdff54de30a4d41294485d2c27011c40 Mon Sep 17 00:00:00 2001 From: Trivalik_cp <42497cfff885d3ca0e6fda54fb6262dd42101bd5sx56jUzf> Date: Tue, 22 Apr 2014 19:44:05 +0000 Subject: [PATCH] Callvirt: remove calc of label name which is never used --- source2/IL2CPU/Cosmos.IL2CPU/IL/Callvirt.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/source2/IL2CPU/Cosmos.IL2CPU/IL/Callvirt.cs b/source2/IL2CPU/Cosmos.IL2CPU/IL/Callvirt.cs index 354fc7936..e4bca8bf4 100644 --- a/source2/IL2CPU/Cosmos.IL2CPU/IL/Callvirt.cs +++ b/source2/IL2CPU/Cosmos.IL2CPU/IL/Callvirt.cs @@ -23,7 +23,6 @@ namespace Cosmos.IL2CPU.X86.IL public override void Execute( MethodInfo aMethod, ILOpCode aOpCode ) { var xOpMethod = aOpCode as OpMethod; - string xCurrentMethodLabel = GetLabel(aMethod, aOpCode.Position); DoExecute(Assembler, aMethod, xOpMethod.Value, xOpMethod.ValueUID, aOpCode); } @@ -224,7 +223,6 @@ namespace Cosmos.IL2CPU.X86.IL if (xReturnSize > 0) { Assembler.Stack.Push(new StackContents.Item(xReturnSize, typeof(Int32))); } - //throw new NotImplementedException(); } } } \ No newline at end of file