OSDN Git Service

(movstrictqi): Change q<-g alternative to q<-m.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 25 Jul 1993 21:29:10 +0000 (21:29 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 25 Jul 1993 21:29:10 +0000 (21:29 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4984 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/i386/i386.md

index 983f497..cda3150 100644 (file)
 ;; faster.
 
 (define_insn "movstrictqi"
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+q,qm"))
-       (match_operand:QI 1 "general_operand" "*g,qn"))]
+  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+qm,q"))
+       (match_operand:QI 1 "general_operand" "*qn,m"))]
   ""
   "*
 {
     /* Fastest way to change a 0 to a 1.  */
     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]))
     {
       abort ();