diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-11-10 19:22:29 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-11-10 19:22:29 +0000 |
commit | 7d87c8518a65dc24f14d70da8d62163ef1c847f0 (patch) | |
tree | 7ef8fbfb31b2f1aaee678cd8f171f1a1e0e74235 | |
parent | f0cdf2b265a1eb99f22131b4a8f6a851cc1819b8 (diff) | |
download | gcc-7d87c8518a65dc24f14d70da8d62163ef1c847f0.zip gcc-7d87c8518a65dc24f14d70da8d62163ef1c847f0.tar.gz gcc-7d87c8518a65dc24f14d70da8d62163ef1c847f0.tar.bz2 |
Add =& constraints to ffssi2's temp registers.
From-SVN: r2738
-rw-r--r-- | gcc/config/mips/mips.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index d5a9faa..e42226a 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -993,8 +993,8 @@ (define_insn "ffssi2" [(set (match_operand:SI 0 "register_operand" "=&d") (ffs:SI (match_operand:SI 1 "register_operand" "d"))) - (clobber (match_scratch:SI 2 "d")) - (clobber (match_scratch:SI 3 "d"))] + (clobber (match_scratch:SI 2 "=&d")) + (clobber (match_scratch:SI 3 "=&d"))] "" "* { |