diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-24 22:09:07 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-24 11:10:30 -0400 |
commit | 602a67cbeaf6b42bc513a873aec82e53235b8754 (patch) | |
tree | 516f55589fdf36d172ca16b67099a1cc07f915cd /sim/common/sim-trace.h | |
parent | 9b6025d1691e83eb5e85805df88a67083972ecca (diff) | |
download | gdb-602a67cbeaf6b42bc513a873aec82e53235b8754.zip gdb-602a67cbeaf6b42bc513a873aec82e53235b8754.tar.gz gdb-602a67cbeaf6b42bc513a873aec82e53235b8754.tar.bz2 |
sim: trace: drop unused trace_one_insn
Everyone has migrated to the split functions (trace_prefix + trace_generic)
a while ago, so we can drop this one now.
Diffstat (limited to 'sim/common/sim-trace.h')
-rw-r--r-- | sim/common/sim-trace.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sim/common/sim-trace.h b/sim/common/sim-trace.h index 580cd4e..28fc351 100644 --- a/sim/common/sim-trace.h +++ b/sim/common/sim-trace.h @@ -618,19 +618,6 @@ do { \ } while (0) -/* The function trace_one_insn has been replaced by the function pair - trace_prefix() + trace_generic() */ -extern void trace_one_insn (SIM_DESC sd, - sim_cpu * cpu, - address_word cia, - int print_linenum_p, - const char *file_name, - int line_nr, - const char *unit, - const char *fmt, - ...) - __attribute__((format (printf, 8, 9))); - extern void trace_printf (SIM_DESC, sim_cpu *, const char *, ...) __attribute__((format (printf, 3, 4))); |