aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash <mathew1800@gmail.com>2015-02-12 20:11:18 -0500
committerGravatar Lioncash <mathew1800@gmail.com>2015-02-12 20:11:20 -0500
commitdf9e0c0f819f2078bff75b819ea0ad33e79c4aa5 (patch)
treeedc8a4ef9ddefcccbb7b3cbeb53ed22d16a41df1 /src/core/arm/dyncom/arm_dyncom_interpreter.cpp
parentea54355d95e8b1b9afaffa3899b86db40992db6a (diff)
dyncom: Remove warning for SXTAH
This is tested to work correctly.
Diffstat (limited to 'src/core/arm/dyncom/arm_dyncom_interpreter.cpp')
-rw-r--r--src/core/arm/dyncom/arm_dyncom_interpreter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
index c91943f2..17944c0a 100644
--- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
+++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
@@ -2905,7 +2905,6 @@ ARM_INST_PTR INTERPRETER_TRANSLATE(sxtb16)(unsigned int inst, int index)
}
ARM_INST_PTR INTERPRETER_TRANSLATE(sxtah)(unsigned int inst, int index){
- LOG_WARNING(Core_ARM11, "SXTAH untested");
arm_inst *inst_base = (arm_inst *)AllocBuffer(sizeof(arm_inst) + sizeof(sxtah_inst));
sxtah_inst *inst_cream = (sxtah_inst *)inst_base->component;