- Fixed more GCC/Clang warnings.
This commit is contained in:
parent
ab03b016e9
commit
6eff1cb8be
6 changed files with 21 additions and 9 deletions
|
|
@ -7771,7 +7771,7 @@ ExpEmit FxVMFunctionCall::Emit(VMFunctionBuilder *build)
|
|||
}
|
||||
|
||||
VMFunction *vmfunc = Function->Variants[0].Implementation;
|
||||
bool staticcall = (vmfunc->Final || vmfunc->VirtualIndex == -1 || NoVirtual);
|
||||
bool staticcall = (vmfunc->Final || vmfunc->VirtualIndex == ~0u || NoVirtual);
|
||||
|
||||
count = 0;
|
||||
// Emit code to pass implied parameters
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue