debug cleanup

This commit is contained in:
mterwoord_cp 2008-01-01 14:58:30 +00:00
parent 752c5d0655
commit 230a8cf42e
2 changed files with 0 additions and 6 deletions

View file

@ -62,9 +62,6 @@ namespace Indy.IL2CPU.IL.X86 {
public Call(Instruction aInstruction, MethodInformation aMethodInfo)
: base(aInstruction, aMethodInfo) {
if (aInstruction.ToString() == "Callvirt !0[] System.Collections.Generic.List`1<System.String>::ToArray()") {
System.Diagnostics.Debugger.Break();
}
MethodReference xMethod = ((MethodReference)aInstruction.Operand);
Initialize(xMethod);
}

View file

@ -16,9 +16,6 @@ namespace Indy.IL2CPU.IL.X86 {
private readonly int mArgumentCount;
public Callvirt(Instruction aInstruction, MethodInformation aMethodInfo)
: base(aInstruction, aMethodInfo) {
if (aInstruction.Operand.ToString() == "!0[] System.Collections.Generic.List`1<System.String>::ToArray()") {
System.Diagnostics.Debugger.Break();
}
int xThisOffSet = (from item in aMethodInfo.Locals
select item.Offset + item.Size).LastOrDefault();
MethodReference xMethod = aInstruction.Operand as MethodReference;