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.
+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.
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 *);
{
va_list ap;
- VA_START (ap, fmt);
+ va_start (ap, fmt);
(*callback->vprintf_filtered) (callback, fmt, ap);
{
va_list ap;
- VA_START (ap, fmt);
+ va_start (ap, fmt);
(*callback->evprintf_filtered) (callback, fmt, ap);
#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 *);
#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 *);