emit_x64: Forward declare BlockOfCode

This commit is contained in:
Lioncash 2016-12-04 23:14:58 -05:00 committed by Merry
parent 6898b74c78
commit 282029f60a
2 changed files with 3 additions and 1 deletions

View file

@ -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"

View file

@ -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)