diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-06-03 17:06:07 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-06-21 18:45:22 +0000 |
commit | 71547a3bf3463af138fadab490b54030d9c74f10 (patch) | |
tree | 35a070e67e8e4bab960ac2267778a4768d2c9376 /target-microblaze | |
parent | dafdf1abfd339602c17228a8de5adcf000eaefd0 (diff) |
qemu-log: use LOG_UNIMP for some target CPU cases
Use LOG_UNIMP for some target CPU cases.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Acked-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-microblaze')
-rw-r--r-- | target-microblaze/translate.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c index c0a6bfd9c3..7470149db3 100644 --- a/target-microblaze/translate.c +++ b/target-microblaze/translate.c @@ -1539,8 +1539,10 @@ static void dec_fpu(DisasContext *dc) cpu_R[dc->ra], cpu_R[dc->rb]); break; default: - qemu_log ("unimplemented fcmp fpu_insn=%x pc=%x opc=%x\n", - fpu_insn, dc->pc, dc->opcode); + qemu_log_mask(LOG_UNIMP, + "unimplemented fcmp fpu_insn=%x pc=%x" + " opc=%x\n", + fpu_insn, dc->pc, dc->opcode); dc->abort_at_next_insn = 1; break; } @@ -1568,8 +1570,9 @@ static void dec_fpu(DisasContext *dc) break; default: - qemu_log ("unimplemented FPU insn fpu_insn=%x pc=%x opc=%x\n", - fpu_insn, dc->pc, dc->opcode); + qemu_log_mask(LOG_UNIMP, "unimplemented FPU insn fpu_insn=%x pc=%x" + " opc=%x\n", + fpu_insn, dc->pc, dc->opcode); dc->abort_at_next_insn = 1; break; } |