mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 20:21:26 +00:00
Fix incorrect pointer type
This commit is contained in:
parent
1c9df61c5d
commit
89e0332f08
1 changed files with 2 additions and 2 deletions
|
@ -88,13 +88,13 @@ void JitCompiler::EmitSO_R()
|
|||
void JitCompiler::EmitSP()
|
||||
{
|
||||
EmitNullPointerThrow(A, X_WRITE_NIL);
|
||||
cc.CreateStore(LoadA(B), OffsetPtr(LoadA(A), ConstD(C)));
|
||||
cc.CreateStore(LoadA(B), ToInt8PtrPtr(LoadA(A), ConstD(C)));
|
||||
}
|
||||
|
||||
void JitCompiler::EmitSP_R()
|
||||
{
|
||||
EmitNullPointerThrow(A, X_WRITE_NIL);
|
||||
cc.CreateStore(LoadA(B), OffsetPtr(LoadA(A), LoadD(C)));
|
||||
cc.CreateStore(LoadA(B), ToInt8PtrPtr(LoadA(A), LoadD(C)));
|
||||
}
|
||||
|
||||
void JitCompiler::EmitSV2()
|
||||
|
|
Loading…
Reference in a new issue