mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
global s/loglevel & X/qemu_loglevel_mask(X)/ (Eduardo Habkost)
These are references to 'loglevel' that aren't on a simple 'if (loglevel & X) qemu_log()' statement. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6340 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
31b1a7b4f5
commit
8fec2b8c45
17 changed files with 26 additions and 26 deletions
|
@ -1933,7 +1933,7 @@ static void disas_sparc_insn(DisasContext * dc)
|
|||
{
|
||||
unsigned int insn, opc, rs1, rs2, rd;
|
||||
|
||||
if (unlikely(loglevel & CPU_LOG_TB_OP))
|
||||
if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP)))
|
||||
tcg_gen_debug_insn_start(dc->pc);
|
||||
insn = ldl_code(dc->pc);
|
||||
opc = GET_FIELD(insn, 0, 1);
|
||||
|
@ -4905,7 +4905,7 @@ static inline void gen_intermediate_code_internal(TranslationBlock * tb,
|
|||
tb->icount = num_insns;
|
||||
}
|
||||
#ifdef DEBUG_DISAS
|
||||
if (loglevel & CPU_LOG_TB_IN_ASM) {
|
||||
if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
|
||||
qemu_log("--------------\n");
|
||||
qemu_log("IN: %s\n", lookup_symbol(pc_start));
|
||||
log_target_disas(pc_start, last_pc + 4 - pc_start, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue