diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-13 13:24:26 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-12-17 17:33:47 +0100 |
commit | 79e8ed35977f9976b4df6f9b2550f46db77939ef (patch) | |
tree | b0aaba11e6863a9e793b54cbe77156b545979b36 /target-cris/op_helper.c | |
parent | c6ce9f176f5bc8d24ce0030198dffc8b80e77f80 (diff) | |
download | qemu-79e8ed35977f9976b4df6f9b2550f46db77939ef.tar.gz qemu-79e8ed35977f9976b4df6f9b2550f46db77939ef.tar.bz2 qemu-79e8ed35977f9976b4df6f9b2550f46db77939ef.zip |
cris: avoid "naked" qemu_log
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-cris/op_helper.c')
-rw-r--r-- | target-cris/op_helper.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-cris/op_helper.c b/target-cris/op_helper.c index 5c0c14d992..22966771e9 100644 --- a/target-cris/op_helper.c +++ b/target-cris/op_helper.c @@ -91,11 +91,6 @@ void helper_spc_write(CPUCRISState *env, uint32_t new_spc) #endif } -void helper_dump(uint32_t a0, uint32_t a1, uint32_t a2) -{ - qemu_log("%s: a0=%x a1=%x\n", __func__, a0, a1); -} - /* Used by the tlb decoder. */ #define EXTRACT_FIELD(src, start, end) \ (((src) >> start) & ((1 << (end - start + 1)) - 1)) |