diff options
author | Richard Henderson <rth@cygnus.com> | 1999-10-14 17:29:24 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-14 17:29:24 -0700 |
commit | 2d1086d8b76c416d41f603cbd1b454e547d16786 (patch) | |
tree | 0ee052b9ad8429745397d08bbd2bdb81f0ebfda7 /gcc/config | |
parent | 43a8f6d50127ae2b30bdfc611fbeaff414ba86da (diff) | |
download | gcc-2d1086d8b76c416d41f603cbd1b454e547d16786.zip gcc-2d1086d8b76c416d41f603cbd1b454e547d16786.tar.gz gcc-2d1086d8b76c416d41f603cbd1b454e547d16786.tar.bz2 |
rs6000.md (call_value_indirect_aix32): Use wildcard match_operand for call return value.
* rs6000.md (call_value_indirect_aix32): Use wildcard match_operand
for call return value.
(call_value_indirect_aix64, call_value_indirect_nt): Likewise.
From-SVN: r29992
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 5cc70c2..7305436 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -8056,7 +8056,7 @@ (set_attr "length" "28")]) (define_insn "call_value_indirect_aix32" - [(set (match_operand 0 "register_operand" "fg") + [(set (match_operand 0 "" "") (call (mem:SI (match_operand:SI 1 "gpc_reg_operand" "b")) (match_operand 2 "const_int_operand" "n"))) (use (match_operand 3 "const_int_operand" "n")) @@ -8072,7 +8072,7 @@ (set_attr "length" "28")]) (define_insn "call_value_indirect_aix64" - [(set (match_operand 0 "register_operand" "fg") + [(set (match_operand 0 "" "") (call (mem:SI (match_operand:DI 1 "gpc_reg_operand" "b")) (match_operand 2 "const_int_operand" "n"))) (use (match_operand 3 "const_int_operand" "n")) @@ -8116,7 +8116,7 @@ (set_attr "length" "24")]) (define_insn "call_value_indirect_nt" - [(set (match_operand 0 "register_operand" "fg") + [(set (match_operand 0 "" "") (call (mem:SI (match_operand:SI 1 "gpc_reg_operand" "b")) (match_operand 2 "const_int_operand" "n"))) (use (match_operand 3 "const_int_operand" "n")) |