diff options
author | Richard Henderson | 2022-04-17 20:29:42 +0200 |
---|---|---|
committer | Richard Henderson | 2022-04-20 19:51:11 +0200 |
commit | eecb0c4e1125c751ded392456b43a036e8efe1ab (patch) | |
tree | 664660717b4ada5552eac2caa7021ec180e62549 /target/hexagon | |
parent | util/log: Drop manual log buffering (diff) | |
download | qemu-eecb0c4e1125c751ded392456b43a036e8efe1ab.tar.gz qemu-eecb0c4e1125c751ded392456b43a036e8efe1ab.tar.xz qemu-eecb0c4e1125c751ded392456b43a036e8efe1ab.zip |
target/hexagon: Remove qemu_set_log in hexagon_translate_init
This code appears to be trying to make sure there is a logfile.
But that's already true -- the logfile will either be set by -D,
or will be stderr. In either case, not appropriate here.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220417183019.755276-3-richard.henderson@linaro.org>
Diffstat (limited to 'target/hexagon')
-rw-r--r-- | target/hexagon/translate.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/target/hexagon/translate.c b/target/hexagon/translate.c index b6f541ecb2..98f1452cad 100644 --- a/target/hexagon/translate.c +++ b/target/hexagon/translate.c @@ -874,12 +874,6 @@ void hexagon_translate_init(void) opcode_init(); - if (HEX_DEBUG) { - if (!qemu_logfile) { - qemu_set_log(qemu_loglevel); - } - } - for (i = 0; i < TOTAL_PER_THREAD_REGS; i++) { hex_gpr[i] = tcg_global_mem_new(cpu_env, offsetof(CPUHexagonState, gpr[i]), |