mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-03 13:14:42 +01:00
Better MSVC support
* Avoiding use of templated variables. * Now compling on MSVC with /WX (warnings as errors). * Fixed all MSVC warnings. * Fixed MSVC source_groups.
This commit is contained in:
parent
bf99ddd065
commit
c18a3eeab4
17 changed files with 392 additions and 361 deletions
|
|
@ -189,7 +189,7 @@ void FuzzJitThumb(const size_t instruction_count, const size_t instructions_to_e
|
|||
|
||||
// Run interpreter
|
||||
write_records.clear();
|
||||
interp.NumInstrsToExecute = instructions_to_execute_count;
|
||||
interp.NumInstrsToExecute = static_cast<unsigned>(instructions_to_execute_count);
|
||||
InterpreterMainLoop(&interp);
|
||||
auto interp_write_records = write_records;
|
||||
{
|
||||
|
|
@ -199,7 +199,7 @@ void FuzzJitThumb(const size_t instruction_count, const size_t instructions_to_e
|
|||
|
||||
// Run jit
|
||||
write_records.clear();
|
||||
jit.Run(instructions_to_execute_count);
|
||||
jit.Run(static_cast<unsigned>(instructions_to_execute_count));
|
||||
auto jit_write_records = write_records;
|
||||
|
||||
// Compare
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue