This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [RFA] Patch for cgen_rtx_error()


On Sun, Oct 08, 2000 at 11:38:00AM +1100, Ben Elliston wrote:
> The following patch implements the cgen_rtx_error function [...]
> [...]
> +/* Emit an error message from CGEN RTL.  */
> +
> +void
> +cgen_rtx_error (SIM_CPU *cpu, const char * fmt, ...)
> +{
> +  va_list ap;
> +  va_start(ap, fmt);
> +  sim_io_printf (CPU_STATE (cpu), fmt, ap);
> +  va_end(ap);
> +  sim_io_printf (CPU_STATE (cpu), "\n");
> +}

Rather than just print the given message (is it really a varargs function?),
it would be good to do a sim_engine_halt() there too.

- FChE

PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]