emit_x64: Forward declare BlockOfCode
This commit is contained in:
parent
6898b74c78
commit
282029f60a
2 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
#include <unordered_map>
|
||||
|
||||
#include "backend_x64/abi.h"
|
||||
#include "backend_x64/block_of_code.h"
|
||||
#include "backend_x64/emit_x64.h"
|
||||
#include "backend_x64/jitstate.h"
|
||||
#include "common/assert.h"
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
|
||||
#include <xbyak_util.h>
|
||||
|
||||
#include "backend_x64/block_of_code.h"
|
||||
#include "backend_x64/reg_alloc.h"
|
||||
#include "dynarmic/callbacks.h"
|
||||
#include "frontend/ir/location_descriptor.h"
|
||||
|
@ -30,6 +29,8 @@ class Inst;
|
|||
|
||||
namespace BackendX64 {
|
||||
|
||||
class BlockOfCode;
|
||||
|
||||
class EmitX64 final {
|
||||
public:
|
||||
EmitX64(BlockOfCode* code, UserCallbacks cb, Jit* jit_interface)
|
||||
|
|
Loading…
Reference in a new issue