From 1f3b37a3d55f2717cdcd349acaf0ed4c38df7ac4 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sat, 30 Jun 2001 17:23:53 +0000 Subject: rtl.def (DEFINE_INSN, [...]): Change output-template slot to format 'T'. * 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. From-SVN: r43665 --- gcc/rtl.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/rtl.def') diff --git a/gcc/rtl.def b/gcc/rtl.def index 906255d..500301a 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -184,7 +184,7 @@ DEF_RTL_EXPR(MATCH_INSN, "match_insn", "is", 'm') template to use. 4: optionally, a vector of attributes for this insn. */ -DEF_RTL_EXPR(DEFINE_INSN, "define_insn", "sEssV", 'x') +DEF_RTL_EXPR(DEFINE_INSN, "define_insn", "sEsTV", 'x') /* Definition of a peephole optimization. 1st operand: vector of insn patterns to match @@ -192,7 +192,7 @@ DEF_RTL_EXPR(DEFINE_INSN, "define_insn", "sEssV", 'x') 3rd operand: template or C code to produce assembler output. 4: optionally, a vector of attributes for this insn. */ -DEF_RTL_EXPR(DEFINE_PEEPHOLE, "define_peephole", "EssV", 'x') +DEF_RTL_EXPR(DEFINE_PEEPHOLE, "define_peephole", "EsTV", 'x') /* Definition of a split operation. 1st operand: insn pattern to match @@ -229,7 +229,7 @@ DEF_RTL_EXPR(DEFINE_SPLIT, "define_split", "EsES", 'x') elements of `recog_operand' for use by the vector of insn-patterns. (`operands' is an alias here for `recog_operand'). 7: optionally, a vector of attributes for this insn. */ -DEF_RTL_EXPR(DEFINE_INSN_AND_SPLIT, "define_insn_and_split", "sEsssESV", 'x') +DEF_RTL_EXPR(DEFINE_INSN_AND_SPLIT, "define_insn_and_split", "sEsTsESV", 'x') /* Definition of an RTL peephole operation. Follows the same arguments as define_split. */ -- cgit v1.1