frontend/A32/ir_emitter: Remove unnecessary includes

std::initializer_list isn't used anywhere in here, and we can just
forward declare the CoprocReg enum to avoid needing to include the
header.
This commit is contained in:
Lioncash 2019-05-18 14:25:08 -04:00 committed by MerryMage
parent bfa8035414
commit 9365487797
4 changed files with 8 additions and 7 deletions

View file

@ -6,6 +6,7 @@
#include "common/assert.h"
#include "frontend/A32/ir_emitter.h"
#include "frontend/A32/types.h"
#include "frontend/ir/opcodes.h"
namespace Dynarmic::A32 {