mirror of https://github.com/xemu-project/xemu.git
target/sparc/int32_helper: Remove DEBUG_PCALL definition
We define DEBUG_PCALL since b884fc5e
(2012-10-06).
7.5 years later it is safe to assume we can remove it :)
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: KONRAD Frederic <frederic.konrad@adacore.com>
Message-Id: <20200331105048.27989-7-f4bug@amsat.org>
This commit is contained in:
parent
8e071cd401
commit
304c1c8aa5
|
@ -23,9 +23,7 @@
|
||||||
#include "exec/log.h"
|
#include "exec/log.h"
|
||||||
#include "sysemu/runstate.h"
|
#include "sysemu/runstate.h"
|
||||||
|
|
||||||
#define DEBUG_PCALL
|
|
||||||
|
|
||||||
#ifdef DEBUG_PCALL
|
|
||||||
static const char * const excp_names[0x80] = {
|
static const char * const excp_names[0x80] = {
|
||||||
[TT_TFAULT] = "Instruction Access Fault",
|
[TT_TFAULT] = "Instruction Access Fault",
|
||||||
[TT_ILL_INSN] = "Illegal Instruction",
|
[TT_ILL_INSN] = "Illegal Instruction",
|
||||||
|
@ -58,7 +56,6 @@ static const char * const excp_names[0x80] = {
|
||||||
[TT_DIV_ZERO] = "Division By Zero",
|
[TT_DIV_ZERO] = "Division By Zero",
|
||||||
[TT_NCP_INSN] = "Coprocessor Disabled",
|
[TT_NCP_INSN] = "Coprocessor Disabled",
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
||||||
void sparc_cpu_do_interrupt(CPUState *cs)
|
void sparc_cpu_do_interrupt(CPUState *cs)
|
||||||
{
|
{
|
||||||
|
@ -71,7 +68,6 @@ void sparc_cpu_do_interrupt(CPUState *cs)
|
||||||
cpu_get_psr(env);
|
cpu_get_psr(env);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DEBUG_PCALL
|
|
||||||
if (qemu_loglevel_mask(CPU_LOG_INT)) {
|
if (qemu_loglevel_mask(CPU_LOG_INT)) {
|
||||||
static int count;
|
static int count;
|
||||||
const char *name;
|
const char *name;
|
||||||
|
@ -104,7 +100,6 @@ void sparc_cpu_do_interrupt(CPUState *cs)
|
||||||
#endif
|
#endif
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
if (env->psret == 0) {
|
if (env->psret == 0) {
|
||||||
if (cs->exception_index == 0x80 &&
|
if (cs->exception_index == 0x80 &&
|
||||||
|
|
Loading…
Reference in New Issue