diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-02-06 15:31:41 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-02-06 15:31:41 -0800 |
commit | b27a0c3929f52959c040b11209c8cb8c6151f85b (patch) | |
tree | 8397a474c1c26470a8249b48428ea341d059b704 | |
parent | 3385bb91035edf33a10607182fc4803ccb29ef53 (diff) | |
download | gcc-b27a0c3929f52959c040b11209c8cb8c6151f85b.zip gcc-b27a0c3929f52959c040b11209c8cb8c6151f85b.tar.gz gcc-b27a0c3929f52959c040b11209c8cb8c6151f85b.tar.bz2 |
(movsf-1, movdf-1, movtf-1): Use 'F' not 'E'.
From-SVN: r8882
-rw-r--r-- | gcc/config/sparc/sparc.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index c8c39c1..e0e8ac4 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -1902,7 +1902,7 @@ ;; It must come before the more general movsf pattern. (define_insn "" [(set (match_operand:SF 0 "general_operand" "=?r,f,m") - (match_operand:SF 1 "" "?E,m,G"))] + (match_operand:SF 1 "" "?F,m,G"))] "TARGET_FPU && GET_CODE (operands[1]) == CONST_DOUBLE" "* { @@ -1975,7 +1975,7 @@ (define_insn "" [(set (match_operand:DF 0 "general_operand" "=?r,e,o") - (match_operand:DF 1 "" "?E,m,G"))] + (match_operand:DF 1 "" "?F,m,G"))] "TARGET_FPU && GET_CODE (operands[1]) == CONST_DOUBLE" "* { @@ -2090,7 +2090,7 @@ ;; It must come before the more general movtf pattern. (define_insn "" [(set (match_operand:TF 0 "general_operand" "=?r,e,o") - (match_operand:TF 1 "" "?E,m,G"))] + (match_operand:TF 1 "" "?F,m,G"))] "TARGET_FPU && GET_CODE (operands[1]) == CONST_DOUBLE" "* { |