diff options
author | David S. Miller <davem@gcc.gnu.org> | 1998-08-23 16:03:03 -0700 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 1998-08-23 16:03:03 -0700 |
commit | 9d09e0d11cf62688db3b34d6303b30d6f54aebd1 (patch) | |
tree | d07e9154a38cd8186c5745a938f60e2cd8b106ff /gcc | |
parent | 7164820232443f455b5b2777afc03d9ddea15a52 (diff) | |
download | gcc-9d09e0d11cf62688db3b34d6303b30d6f54aebd1.zip gcc-9d09e0d11cf62688db3b34d6303b30d6f54aebd1.tar.gz gcc-9d09e0d11cf62688db3b34d6303b30d6f54aebd1.tar.bz2 |
Fix thinko in previous commit.
From-SVN: r21920
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sparc.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index 8399035..558d15a 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -2039,8 +2039,8 @@ ;; We always work with constants here. (define_insn "*movhi_lo_sum" [(set (match_operand:HI 0 "register_operand" "=r") - (ior:HI (match_operand:HI 1 "register_operand" "r") - (match_operand:HI 2 "immediate_operand" "in")))] + (ior:HI (match_operand:HI 1 "arith_operand" "%r") + (match_operand:HI 2 "arith_operand" "I")))] "" "or\\t%1, %2, %0" [(set_attr "type" "ialu") @@ -3033,8 +3033,8 @@ ;; We have available v9 double floats but not 64-bit ;; integer registers. (define_insn "*movdf_insn_v9only" - [(set (match_operand:DF 0 "general_operand" "=e,e,m,r,U,T,r,o") - (match_operand:DF 1 "input_operand" "e,m,e,r,T,U,o,r"))] + [(set (match_operand:DF 0 "general_operand" "=e,e,m,U,T,r,r,o") + (match_operand:DF 1 "input_operand" "e,m,e,T,U,r,o,r"))] "TARGET_FPU && TARGET_V9 && ! TARGET_ARCH64 |