From aa4c562dab1f468c0143e43f1898e6a597d994d3 Mon Sep 17 00:00:00 2001 From: zack Date: Sat, 30 Jun 2001 17:23:53 +0000 Subject: * rtl.def (DEFINE_INSN, DEFINE_INSN_AND_SPLIT, DEFINE_PEEPHOLE): Change output-template slot to format 'T'. * rtl.h (XTMPL): New. * read-rtl.c (read_escape): New function. (read_quoted_string, read_braced_string): Use it. (read_rtx): Set star_if_braced from the format string. Use XTMPL where appropriate. * genoutput.c (gen_insn, gen_peephole): Use XTMPL to get the template string. * rtl.c: Include errors.h for sake of rtl_check_failed* routines. Document 'T' in rtx format strings. * Makefile.in (rtl.o, $(HOST_PREFIX_1)rtl.o): Depend on errors.h. * errors.c (internal_error): Add missing ": " at end of string. * i860.md: Change triple backslashes to double backslashes at ends of lines in output templates. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43665 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/errors.c') diff --git a/gcc/errors.c b/gcc/errors.c index e1a3f13a8fd..a61bb8801da 100644 --- a/gcc/errors.c +++ b/gcc/errors.c @@ -121,7 +121,7 @@ internal_error VPARAMS ((const char *format, ...)) format = va_arg (ap, const char *); #endif - fprintf (stderr, "%s: Internal error", progname); + fprintf (stderr, "%s: Internal error: ", progname); vfprintf (stderr, format, ap); va_end (ap); fputc ('\n', stderr); -- cgit v1.2.1