mirror of https://github.com/inolen/redream.git
fix tools bitrot
This commit is contained in:
parent
893cd0b0e4
commit
9926e82a82
|
@ -1,5 +1,5 @@
|
|||
#include "core/core.h"
|
||||
#include "core/filesystem.h"
|
||||
#include "core/log.h"
|
||||
#include "core/option.h"
|
||||
#include "jit/backend/x64/x64_backend.h"
|
||||
#include "jit/ir/ir.h"
|
||||
|
@ -16,8 +16,8 @@
|
|||
DEFINE_OPTION_STRING(pass, "cfa,lse,cprop,esimp,dce,ra",
|
||||
"Comma-separated list of passes to run");
|
||||
|
||||
DEFINE_STAT(ir_instrs_total, "total ir instructions");
|
||||
DEFINE_STAT(ir_instrs_removed, "removed ir instructions");
|
||||
DEFINE_PASS_STAT(ir_instrs_total, "total ir instructions");
|
||||
DEFINE_PASS_STAT(ir_instrs_removed, "removed ir instructions");
|
||||
|
||||
DEFINE_JIT_CODE_BUFFER(code);
|
||||
static uint8_t ir_buffer[1024 * 1024];
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include <stdio.h>
|
||||
#include "core/assert.h"
|
||||
#include "core/core.h"
|
||||
#include "core/filesystem.h"
|
||||
#include "guest/pvr/tex.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "core/log.h"
|
||||
#include "core/core.h"
|
||||
|
||||
extern int cmd_depth(int argc, const char **argv);
|
||||
|
||||
|
|
Loading…
Reference in New Issue