summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Alrae2014-12-10 17:30:59 +0100
committerLeon Alrae2014-12-16 13:45:20 +0100
commitd4fa5354a246a1c6cb538a5d8ebcc21206d502fb (patch)
treee17fc2b47df2fda7d26679c025e545e3c9fb3bbd
parentdisas/mips: disable unused mips16_to_32_reg_map[] (diff)
downloadqemu-d4fa5354a246a1c6cb538a5d8ebcc21206d502fb.tar.gz
qemu-d4fa5354a246a1c6cb538a5d8ebcc21206d502fb.tar.xz
qemu-d4fa5354a246a1c6cb538a5d8ebcc21206d502fb.zip
target-mips: remove excp_names[] from linux-user as it is unused
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--target-mips/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/helper.c b/target-mips/helper.c
index c4b3658098..7d26705cb5 100644
--- a/target-mips/helper.c
+++ b/target-mips/helper.c
@@ -388,7 +388,6 @@ hwaddr cpu_mips_translate_address(CPUMIPSState *env, target_ulong address, int r
return physical;
}
}
-#endif
static const char * const excp_names[EXCP_LAST + 1] = {
[EXCP_RESET] = "reset",
@@ -429,6 +428,7 @@ static const char * const excp_names[EXCP_LAST + 1] = {
[EXCP_MSADIS] = "MSA disabled",
[EXCP_MSAFPE] = "MSA floating point",
};
+#endif
target_ulong exception_resume_pc (CPUMIPSState *env)
{