From 632314c49ce20ee9c974f07544d9125fbbbfbe1b Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Tue, 12 Feb 2013 16:13:27 +0000 Subject: qemu-log: Remove qemu_log_try_set_file() and its users MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the function qemu_log_try_set_file() and its users (which are all in TCG code generation functions for various targets). This function was added to abstract out code which was originally written as "if (!logfile) logfile = stderr;" in order that BUG: case code which did an unguarded "fprintf(logfile, ...)" would not crash if debug logging was not enabled. Since those direct uses of logfile have also been abstracted away into qemu_log() calls which check for a NULL logfile, there is no need for the target-* files to mess with the user's chosen logging settings. Signed-off-by: Peter Maydell Reviewed-by: Andreas Färber Acked-by: Michael Walle Signed-off-by: Blue Swirl --- target-cris/translate.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'target-cris') diff --git a/target-cris/translate.c b/target-cris/translate.c index 04a5379775..2cf01a52e7 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -3215,8 +3215,6 @@ gen_intermediate_code_internal(CPUCRISState *env, TranslationBlock *tb, int num_insns; int max_insns; - qemu_log_try_set_file(stderr); - if (env->pregs[PR_VR] == 32) { dc->decoder = crisv32_decoder; dc->clear_locked_irq = 0; -- cgit v1.2.1