diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-14 14:43:53 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-14 14:43:53 -0400 |
commit | 693fb02f8038b7d94ebbfbdbf8c8b1533800f14b (patch) | |
tree | 5e13ec6e9f5f7525da645e5f475c6d6f5954a516 | |
parent | ed18f94dd96e4094d752799ad5b77b31732886de (diff) | |
download | gcc-693fb02f8038b7d94ebbfbdbf8c8b1533800f14b.zip gcc-693fb02f8038b7d94ebbfbdbf8c8b1533800f14b.tar.gz gcc-693fb02f8038b7d94ebbfbdbf8c8b1533800f14b.tar.bz2 |
(match_rtx): Treat MATCH_PAR_DUP just like MATCH_DUP.
From-SVN: r1835
-rw-r--r-- | gcc/genpeep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c index aeac6e0..39e8776 100644 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -186,6 +186,7 @@ match_rtx (x, path, fail_label) return; case MATCH_DUP: + case MATCH_PAR_DUP: printf (" x = "); print_path (path); printf (";\n"); |