From c0f0634494724af45fea603c8800a5ad5af37d59 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 25 Jul 1993 21:29:10 +0000 Subject: [PATCH] (movstrictqi): Change q<-g alternative to q<-m. From-SVN: r4984 --- gcc/config/i386/i386.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 (); -- 2.30.2