1
0
This commit is contained in:
otya128
2016-02-23 21:59:40 +09:00
parent 60770eb2f4
commit 872a51f7cf

View File

@@ -65,10 +65,10 @@ class VM
currentSlot = slots[slot];
this.slot = slot;
}
void directSlot(int start, Code[] code, int len, VMVariable[wstring] globalTable, Function[wstring] functions, DataTable gdt/*GNU Debugging Tools*/,
void directSlot(sizediff_t start, Code[] code, int len, VMVariable[wstring] globalTable, Function[wstring] functions, DataTable gdt/*GNU Debugging Tools*/,
int[wstring] globalLabel, DebugInfo dinfo)
{
this.pc = start;
this.pc = cast(int)start;
auto c = this.currentSlot;
c.globalTable = globalTable;
c.code = code;