diff options
author | Tom Tromey <tromey@redhat.com> | 2014-01-04 21:46:15 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-01-07 09:17:05 -0700 |
commit | 6104cb7ae77a9514ada188ded4095eed39ce267e (patch) | |
tree | be7ebde47064f35bc580269762f3a13faea9773d | |
parent | bdca5ee4bcd2fce04de6c9eabdbef8d960298e02 (diff) | |
download | fsf-binutils-gdb-6104cb7ae77a9514ada188ded4095eed39ce267e.zip fsf-binutils-gdb-6104cb7ae77a9514ada188ded4095eed39ce267e.tar.gz fsf-binutils-gdb-6104cb7ae77a9514ada188ded4095eed39ce267e.tar.bz2 |
remove VA_* macros from sim
Remove the obsolete VA_* macros from sim.
2014-01-06 Tom Tromey <tromey@redhat.com>
* common/cgen-trace.c: Don't use old VA_* macros.
* common/sim-load.c (xprintf): Likewise.
* common/sim-trace.c (trace_printf, debug_printf): Likewise.
-rw-r--r-- | sim/ChangeLog | 6 | ||||
-rw-r--r-- | sim/common/cgen-trace.c | 2 | ||||
-rw-r--r-- | sim/common/sim-load.c | 4 | ||||
-rw-r--r-- | sim/common/sim-trace.c | 4 |
4 files changed, 11 insertions, 5 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog index 04e5202..71d9db9 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,5 +1,11 @@ 2014-01-06 Tom Tromey <tromey@redhat.com> + * common/cgen-trace.c: Don't use old VA_* macros. + * common/sim-load.c (xprintf): Likewise. + * common/sim-trace.c (trace_printf, debug_printf): Likewise. + +2014-01-06 Tom Tromey <tromey@redhat.com> + * README-HACKING: Don't use PARAMS. * arm/wrapper.c: Don't use PARAMS. * bfin/sim-main.h: Don't use PARAMS. diff --git a/sim/common/cgen-trace.c b/sim/common/cgen-trace.c index 6e2f856..ed9aee1 100644 --- a/sim/common/cgen-trace.c +++ b/sim/common/cgen-trace.c @@ -308,7 +308,7 @@ sim_disasm_sprintf (SFILE *f, const char *format, ...) int n; va_list args; - VA_START (args, format); + va_start (args, format); #ifndef __STDC__ f = va_arg (args, SFILE *); format = va_arg (args, char *); diff --git a/sim/common/sim-load.c b/sim/common/sim-load.c index 2e2b804..48c0a93 100644 --- a/sim/common/sim-load.c +++ b/sim/common/sim-load.c @@ -173,7 +173,7 @@ xprintf (host_callback *callback, const char *fmt, ...) { va_list ap; - VA_START (ap, fmt); + va_start (ap, fmt); (*callback->vprintf_filtered) (callback, fmt, ap); @@ -185,7 +185,7 @@ eprintf (host_callback *callback, const char *fmt, ...) { va_list ap; - VA_START (ap, fmt); + va_start (ap, fmt); (*callback->evprintf_filtered) (callback, fmt, ap); diff --git a/sim/common/sim-trace.c b/sim/common/sim-trace.c index bb56db7..b8cfff3 100644 --- a/sim/common/sim-trace.c +++ b/sim/common/sim-trace.c @@ -1309,7 +1309,7 @@ trace_printf (SIM_DESC sd, sim_cpu *cpu, const char *fmt, ...) #endif va_list ap; - VA_START (ap, fmt); + va_start (ap, fmt); #if !defined __STDC__ && !defined ALMOST_STDC sd = va_arg (ap, SIM_DESC); cpu = va_arg (ap, sim_cpu *); @@ -1330,7 +1330,7 @@ debug_printf (sim_cpu *cpu, const char *fmt, ...) #endif va_list ap; - VA_START (ap, fmt); + va_start (ap, fmt); #if !defined __STDC__ && !defined ALMOST_STDC cpu = va_arg (ap, sim_cpu *); fmt = va_arg (ap, const char *); |