Commit df14489a by Ulrich Weigand Committed by Ulrich Weigand

s390.md (movsi): Only use floating point register alternatives when operands are already fprs.

	* config/s390/s390.md (movsi): Only use floating point
	register alternatives when operands are already fprs.
	(movdi_31, movdi_64): Likewise.

From-SVN: r54506
parent e9024f7f
2002-06-11 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.md (movsi): Only use floating point
register alternatives when operands are already fprs.
(movdi_31, movdi_64): Likewise.
2002-06-11 David S. Miller <davem@redhat.com> 2002-06-11 David S. Miller <davem@redhat.com>
* emit-rtl.c (try_split): Do not abort on non-INSN_P. * emit-rtl.c (try_split): Do not abort on non-INSN_P.
......
...@@ -947,8 +947,8 @@ ...@@ -947,8 +947,8 @@
(set_attr "atype" "mem")]) (set_attr "atype" "mem")])
(define_insn "*movdi_64" (define_insn "*movdi_64"
[(set (match_operand:DI 0 "nonimmediate_operand" "=d,d,m,f,f,m") [(set (match_operand:DI 0 "nonimmediate_operand" "=d,d,m,!*f,!*f,!m")
(match_operand:DI 1 "general_operand" "d,m,d,f,m,f"))] (match_operand:DI 1 "general_operand" "d,m,d,*f,m,*f"))]
"TARGET_64BIT" "TARGET_64BIT"
"@ "@
lgr\\t%0,%1 lgr\\t%0,%1
...@@ -961,8 +961,8 @@ ...@@ -961,8 +961,8 @@
(set_attr "atype" "reg,mem,mem,reg,mem,mem")]) (set_attr "atype" "reg,mem,mem,reg,mem,mem")])
(define_insn "*movdi_31" (define_insn "*movdi_31"
[(set (match_operand:DI 0 "nonimmediate_operand" "=d,Q,d,m,f,f,m") [(set (match_operand:DI 0 "nonimmediate_operand" "=d,Q,d,m,!*f,!*f,!m")
(match_operand:DI 1 "general_operand" "Q,d,dKm,d,f,m,f"))] (match_operand:DI 1 "general_operand" "Q,d,dKm,d,*f,m,*f"))]
"!TARGET_64BIT" "!TARGET_64BIT"
"@ "@
lm\\t%0,%N0,%1 lm\\t%0,%N0,%1
...@@ -1100,8 +1100,8 @@ ...@@ -1100,8 +1100,8 @@
(set_attr "atype" "mem")]) (set_attr "atype" "mem")])
(define_insn "*movsi" (define_insn "*movsi"
[(set (match_operand:SI 0 "nonimmediate_operand" "=d,d,m,f,f,m") [(set (match_operand:SI 0 "nonimmediate_operand" "=d,d,m,!*f,!*f,!m")
(match_operand:SI 1 "general_operand" "d,m,d,f,m,f"))] (match_operand:SI 1 "general_operand" "d,m,d,*f,m,*f"))]
"" ""
"@ "@
lr\\t%0,%1 lr\\t%0,%1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment