diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-19 21:07:39 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-19 21:07:39 +0000 |
commit | 9d85330726e674c9a2d7d826623f890356096800 (patch) | |
tree | affcf520d6a04f6dfb71da62a6ead0f0a0ee6d67 /gcc | |
parent | 56f9e2595ddbcf507de6bf68c3fbadad0a6f18a0 (diff) | |
download | gcc-9d85330726e674c9a2d7d826623f890356096800.zip gcc-9d85330726e674c9a2d7d826623f890356096800.tar.gz gcc-9d85330726e674c9a2d7d826623f890356096800.tar.bz2 |
(movsf+1,2,movdf+1,2): Make 'f' preferred register class.
From-SVN: r6115
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/clipper/clipper.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/clipper/clipper.md b/gcc/config/clipper/clipper.md index 2c8735c..4f3b768 100644 --- a/gcc/config/clipper/clipper.md +++ b/gcc/config/clipper/clipper.md @@ -1,5 +1,5 @@ ;;- Machine description for GNU compiler, Clipper Version -;; Copyright (C) 1987, 1988, 1991 Free Software Foundation, Inc. +;; Copyright (C) 1987, 1988, 1991, 1993 Free Software Foundation, Inc. ;; Contributed by Holger Teutsch (holger@hotbso.rhein-main.de) @@ -148,8 +148,8 @@ ;; to recombine a mem -> mem move ;; (define_insn "" - [(set (match_operand:DF 0 "register_operand" "=rf") - (match_operand:DF 1 "nonimmediate_operand" "rfo"))] + [(set (match_operand:DF 0 "register_operand" "=*rf") + (match_operand:DF 1 "nonimmediate_operand" "*rfo"))] "" "* { @@ -203,7 +203,7 @@ (define_insn "" [(set (match_operand:DF 0 "memory_operand" "=o,m") - (match_operand:DF 1 "register_operand" "rf,f"))] + (match_operand:DF 1 "register_operand" "*rf,f"))] "" "* { @@ -247,8 +247,8 @@ ;; to recombine a mem -> mem move ;; (define_insn "" - [(set (match_operand:SF 0 "register_operand" "=rf") - (match_operand:SF 1 "nonimmediate_operand" "rfm"))] + [(set (match_operand:SF 0 "register_operand" "=*rf") + (match_operand:SF 1 "nonimmediate_operand" "*rfm"))] "" "* { @@ -284,7 +284,7 @@ (define_insn "" [(set (match_operand:SF 0 "memory_operand" "=m") - (match_operand:SF 1 "register_operand" "rf"))] + (match_operand:SF 1 "register_operand" "*rf"))] "" "* { |