diff options
| author | 2015-07-27 20:36:50 -0400 | |
|---|---|---|
| committer | 2015-07-27 22:06:51 -0400 | |
| commit | db4e99c18689e0864f8a8b6cc9f8d16a3c675a6d (patch) | |
| tree | de97286e93bc245bdd60dde2ccbb7b7ba8e62288 | |
| parent | Merge pull request #1001 from lioncash/arm (diff) | |
| download | yuzu-db4e99c18689e0864f8a8b6cc9f8d16a3c675a6d.tar.gz yuzu-db4e99c18689e0864f8a8b6cc9f8d16a3c675a6d.tar.xz yuzu-db4e99c18689e0864f8a8b6cc9f8d16a3c675a6d.zip | |
dyncom: Remove duplicated typedef and extern
These are already present in arm_dyncom_dec.h.
Diffstat (limited to '')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index cf09acb4e..e855a4487 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -3548,10 +3548,6 @@ enum { | |||
| 3548 | FETCH_EXCEPTION | 3548 | FETCH_EXCEPTION |
| 3549 | }; | 3549 | }; |
| 3550 | 3550 | ||
| 3551 | typedef struct instruction_set_encoding_item ISEITEM; | ||
| 3552 | |||
| 3553 | extern const ISEITEM arm_instruction[]; | ||
| 3554 | |||
| 3555 | static int InterpreterTranslate(ARMul_State* cpu, int& bb_start, u32 addr) { | 3551 | static int InterpreterTranslate(ARMul_State* cpu, int& bb_start, u32 addr) { |
| 3556 | Common::Profiling::ScopeTimer timer_decode(profile_decode); | 3552 | Common::Profiling::ScopeTimer timer_decode(profile_decode); |
| 3557 | 3553 | ||