mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-24 12:24:59 +00:00
Fixed divu sign extension in live recompiler and fixed warnings
This commit is contained in:
parent
dc2a5b6a46
commit
4a44e2b4c0
4 changed files with 11 additions and 13 deletions
|
@ -1,6 +1,7 @@
|
|||
#include <fstream>
|
||||
#include <chrono>
|
||||
#include <filesystem>
|
||||
#include <cinttypes>
|
||||
|
||||
#include "sljitLir.h"
|
||||
#include "recompiler/live_recompiler.h"
|
||||
|
@ -274,7 +275,7 @@ int main(int argc, const char** argv) {
|
|||
switch (stats.error) {
|
||||
case TestError::Success:
|
||||
printf(" Success\n");
|
||||
printf(" Generated %llu bytes in %llu microseconds and ran in %llu microseconds\n",
|
||||
printf(" Generated %" PRIu64 " bytes in %" PRIu64 " microseconds and ran in %" PRIu64 " microseconds\n",
|
||||
stats.code_size, stats.codegen_microseconds, stats.execution_microseconds);
|
||||
passed_count++;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue