Commit c0f06344 by Richard Stallman

(movstrictqi): Change q<-g alternative to q<-m.

From-SVN: r4984
parent c937357e
...@@ -794,8 +794,8 @@ ...@@ -794,8 +794,8 @@
;; faster. ;; faster.
(define_insn "movstrictqi" (define_insn "movstrictqi"
[(set (strict_low_part (match_operand:QI 0 "general_operand" "+q,qm")) [(set (strict_low_part (match_operand:QI 0 "general_operand" "+qm,q"))
(match_operand:QI 1 "general_operand" "*g,qn"))] (match_operand:QI 1 "general_operand" "*qn,m"))]
"" ""
"* "*
{ {
...@@ -815,7 +815,7 @@ ...@@ -815,7 +815,7 @@
/* Fastest way to change a 0 to a 1. */ /* Fastest way to change a 0 to a 1. */
return AS1 (inc%B0,%0); return AS1 (inc%B0,%0);
/* If mov%B0 isn't allowed for one of these regs, use mov%W0. */ /* If mov%B0 isn't allowed for one of these regs, use mov%L0. */
if (NON_QI_REG_P (operands[0]) || NON_QI_REG_P (operands[1])) if (NON_QI_REG_P (operands[0]) || NON_QI_REG_P (operands[1]))
{ {
abort (); abort ();
......
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