diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2017-09-14 08:38:35 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2017-10-25 11:55:09 +0200 |
commit | 1d48474d8e9eff9d08ad43477043d95789b96a40 (patch) | |
tree | 5024599418fde37fd7e20dcd81e2a962da3feb95 /include/exec/log.h | |
parent | 7bcdbf51eeb674e42dd3f171f1caed4c44ba8710 (diff) | |
download | qemu-1d48474d8e9eff9d08ad43477043d95789b96a40.zip qemu-1d48474d8e9eff9d08ad43477043d95789b96a40.tar.gz qemu-1d48474d8e9eff9d08ad43477043d95789b96a40.tar.bz2 |
disas: Remove unused flags arguments
Now that every target is using the disas_set_info hook,
the flags argument is unused. Remove it.
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/log.h')
-rw-r--r-- | include/exec/log.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/exec/log.h b/include/exec/log.h index ba1c9b5..c249307 100644 --- a/include/exec/log.h +++ b/include/exec/log.h @@ -38,9 +38,9 @@ static inline void log_cpu_state_mask(int mask, CPUState *cpu, int flags) #ifdef NEED_CPU_H /* disas() and target_disas() to qemu_logfile: */ static inline void log_target_disas(CPUState *cpu, target_ulong start, - target_ulong len, int flags) + target_ulong len) { - target_disas(qemu_logfile, cpu, start, len, flags); + target_disas(qemu_logfile, cpu, start, len); } static inline void log_disas(void *code, unsigned long size) |