From 52c293f8ccf871d96500e9f7df1506c9546d4575 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 20 Aug 1992 07:08:00 -0400 Subject: [PATCH] (load_multiple): Operand 2 should be a MATCH_OPERAND. (store_multiple_{,no_}bug): Likewise. From-SVN: r1907 --- gcc/config/a29k/a29k.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gcc/config/a29k/a29k.md b/gcc/config/a29k/a29k.md index f6cc93ebbb7..a2560c5c854 100644 --- a/gcc/config/a29k/a29k.md +++ b/gcc/config/a29k/a29k.md @@ -1016,7 +1016,7 @@ ;; LOADM (define_expand "load_multiple" [(set (reg:SI 179) - (match_dup 2)) + (match_operand:SI 2 "const_int_operand" "")) (match_parallel 3 "" [(set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))])] "" @@ -1315,7 +1315,7 @@ (define_expand "store_multiple_no_bug" [(set (reg:SI 179) - (match_dup 2)) + (match_operand:SI 2 "const_int_operand" "")) (match_parallel 3 "" [(set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))])] "" @@ -1358,8 +1358,9 @@ }") (define_expand "store_multiple_bug" - [(match_parallel 3 "" [(set (match_operand:SI 0 "" "") - (match_operand:SI 1 "" ""))])] + [(match_par_dup 3 "" [(set (match_operand:SI 0 "" "") + (match_operand:SI 1 "" "")) + (use (match_operand:SI 2 "" ""))])] "" " { -- 2.30.2