mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- give the remaining virtual registers names
This commit is contained in:
parent
c86e4480b6
commit
b15ca09486
1 changed files with 5 additions and 5 deletions
|
@ -269,11 +269,11 @@ void JitCompiler::Setup()
|
|||
cc.add(vmcalls, (int)1);
|
||||
cc.mov(x86::dword_ptr(vmcallsptr), vmcalls);
|
||||
|
||||
frameD = cc.newIntPtr();
|
||||
frameF = cc.newIntPtr();
|
||||
frameS = cc.newIntPtr();
|
||||
frameA = cc.newIntPtr();
|
||||
params = cc.newIntPtr();
|
||||
frameD = cc.newIntPtr("frameD");
|
||||
frameF = cc.newIntPtr("frameF");
|
||||
frameS = cc.newIntPtr("frameS");
|
||||
frameA = cc.newIntPtr("frameA");
|
||||
params = cc.newIntPtr("params");
|
||||
|
||||
// the VM version reads this from the stack, but it is constant data
|
||||
int offsetParams = ((int)sizeof(VMFrame) + 15) & ~15;
|
||||
|
|
Loading…
Reference in a new issue