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/disas/disas.h | |
parent | 7bcdbf51eeb674e42dd3f171f1caed4c44ba8710 (diff) |
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/disas/disas.h')
-rw-r--r-- | include/disas/disas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/disas/disas.h b/include/disas/disas.h index e549ca24a1..4d48c13c65 100644 --- a/include/disas/disas.h +++ b/include/disas/disas.h @@ -9,10 +9,10 @@ /* Disassemble this for me please... (debugging). */ void disas(FILE *out, void *code, unsigned long size); void target_disas(FILE *out, CPUState *cpu, target_ulong code, - target_ulong size, int flags); + target_ulong size); void monitor_disas(Monitor *mon, CPUState *cpu, - target_ulong pc, int nb_insn, int is_physical, int flags); + target_ulong pc, int nb_insn, int is_physical); /* Look up symbol for debugging purpose. Returns "" if unknown. */ const char *lookup_symbol(target_ulong orig_addr); |