mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- remove unused argument
This commit is contained in:
parent
34b037c9db
commit
ac28f0d34f
2 changed files with 6 additions and 6 deletions
|
@ -502,10 +502,10 @@ void JitCompiler::SetupFrame()
|
|||
|
||||
cc.cmp(numargs, sfunc->NumArgs);
|
||||
cc.jne(slowinit);
|
||||
SetupSimpleFrame(vmstack);
|
||||
SetupSimpleFrame();
|
||||
cc.jmp(endinit);
|
||||
cc.bind(slowinit);
|
||||
SetupSimpleFrameMissingArgs(vmstack); // Does this ever happen?
|
||||
SetupSimpleFrameMissingArgs(); // Does this ever happen?
|
||||
cc.bind(endinit);
|
||||
}
|
||||
else
|
||||
|
@ -514,7 +514,7 @@ void JitCompiler::SetupFrame()
|
|||
}
|
||||
}
|
||||
|
||||
void JitCompiler::SetupSimpleFrame(asmjit::X86Mem vmstack)
|
||||
void JitCompiler::SetupSimpleFrame()
|
||||
{
|
||||
using namespace asmjit;
|
||||
|
||||
|
@ -569,7 +569,7 @@ void JitCompiler::SetupSimpleFrame(asmjit::X86Mem vmstack)
|
|||
cc.xor_(regA[i], regA[i]);
|
||||
}
|
||||
|
||||
void JitCompiler::SetupSimpleFrameMissingArgs(asmjit::X86Mem vmstack)
|
||||
void JitCompiler::SetupSimpleFrameMissingArgs()
|
||||
{
|
||||
using namespace asmjit;
|
||||
|
||||
|
|
|
@ -42,8 +42,8 @@ private:
|
|||
void CreateRegisters();
|
||||
void IncrementVMCalls();
|
||||
void SetupFrame();
|
||||
void SetupSimpleFrame(asmjit::X86Mem vmstack);
|
||||
void SetupSimpleFrameMissingArgs(asmjit::X86Mem vmstack);
|
||||
void SetupSimpleFrame();
|
||||
void SetupSimpleFrameMissingArgs();
|
||||
void SetupFullVMFrame();
|
||||
void BindLabels();
|
||||
void EmitOpcode();
|
||||
|
|
Loading…
Reference in a new issue