Callvirt: remove calc of label name which is never used

This commit is contained in:
Trivalik_cp 2014-04-22 19:44:05 +00:00
parent c863b669fd
commit dffd201cfd

View file

@ -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();
}
}
}