diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-24 21:59:26 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-24 11:04:43 -0400 |
commit | 9b6025d1691e83eb5e85805df88a67083972ecca (patch) | |
tree | e20269cd497f912f2b0084311f7815406cb59b90 /sim/common/sim-trace.c | |
parent | fa8f87e53b68881c5e3aab296b517203407c4378 (diff) | |
download | gdb-9b6025d1691e83eb5e85805df88a67083972ecca.zip gdb-9b6025d1691e83eb5e85805df88a67083972ecca.tar.gz gdb-9b6025d1691e83eb5e85805df88a67083972ecca.tar.bz2 |
sim: trace: rename debug_printf fully
Rather than redirect using a define, just rename the symbol fully.
Diffstat (limited to 'sim/common/sim-trace.c')
-rw-r--r-- | sim/common/sim-trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-trace.c b/sim/common/sim-trace.c index 6e11cce..40286e1 100644 --- a/sim/common/sim-trace.c +++ b/sim/common/sim-trace.c @@ -1316,7 +1316,7 @@ trace_printf (SIM_DESC sd, sim_cpu *cpu, const char *fmt, ...) } void -debug_printf (sim_cpu *cpu, const char *fmt, ...) +sim_debug_printf (sim_cpu *cpu, const char *fmt, ...) { va_list ap; |