From: Richard Stallman Date: Sun, 25 Jul 1993 21:29:10 +0000 (+0000) Subject: (movstrictqi): Change q<-g alternative to q<-m. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0f0634494724af45fea603c8800a5ad5af37d59;p=gcc.git (movstrictqi): Change q<-g alternative to q<-m. From-SVN: r4984 --- diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 983f49734f8..cda31501380 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -794,8 +794,8 @@ ;; 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"))] "" "* { @@ -815,7 +815,7 @@ /* 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 ();