public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: John Carr <jfc@mit.edu>
To: egcs@cygnus.com
Subject: genattrtab.c
Date: Tue, 14 Apr 1998 15:23:00 -0000	[thread overview]
Message-ID: <199804141954.PAA13862@jfc.> (raw)

This patch adds support for match_insn in define_attr.

	* genattrtab.c (check_attr_test): Handle MATCH_INSN like MATCH_OPERAND.
	(write_test_expr): Allow MATCH_INSN.

*** genattrtab.c	1998/04/04 17:38:05	1.24
--- genattrtab.c	1998/04/14 19:51:26
*************** check_attr_test (exp, is_const)
*** 1045,1054 ****
        XEXP (exp, 0) = check_attr_test (XEXP (exp, 0), is_const);
        break;
  
      case MATCH_OPERAND:
        if (is_const)
  	fatal ("RTL operator \"%s\" not valid in constant attribute test",
! 	       GET_RTX_NAME (MATCH_OPERAND));
        /* These cases can't be simplified.  */
        RTX_UNCHANGING_P (exp) = 1;
        break;
--- 1045,1055 ----
        XEXP (exp, 0) = check_attr_test (XEXP (exp, 0), is_const);
        break;
  
+     case MATCH_INSN:
      case MATCH_OPERAND:
        if (is_const)
  	fatal ("RTL operator \"%s\" not valid in constant attribute test",
! 	       GET_RTX_NAME (GET_CODE (exp)));
        /* These cases can't be simplified.  */
        RTX_UNCHANGING_P (exp) = 1;
        break;
*************** write_test_expr (exp, flags)
*** 4623,4628 ****
--- 4624,4633 ----
        else
  	printf ("%s (operands[%d], %smode)",
  		XSTR (exp, 1), XINT (exp, 0), GET_MODE_NAME (GET_MODE (exp)));
+       break;
+ 
+     case MATCH_INSN:
+       printf ("%s (insn)", XSTR (exp, 0));
        break;
  
      /* Constant integer.  */

             reply	other threads:[~1998-04-14 15:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-04-14 15:23 John Carr [this message]
1998-04-14 21:01 ` genattrtab.c Jeffrey A Law

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199804141954.PAA13862@jfc. \
    --to=jfc@mit.edu \
    --cc=egcs@cygnus.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).