diff options
author | Jason R Thorpe <thorpej@zembu.com> | 2000-05-03 21:17:35 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-05-03 14:17:35 -0700 |
commit | 122ddbf9b3572a25d22a83a9f2bbf9442ced99fb (patch) | |
tree | 64fb3a959a0cf1bf32b47c0cc22a049922c39cc5 /gcc | |
parent | efdd2c06bbd9911e69372595db5518924bdbb44b (diff) | |
download | gcc-122ddbf9b3572a25d22a83a9f2bbf9442ced99fb.zip gcc-122ddbf9b3572a25d22a83a9f2bbf9442ced99fb.tar.gz gcc-122ddbf9b3572a25d22a83a9f2bbf9442ced99fb.tar.bz2 |
* config/i386/i386.md (lshrqi2_cmpno): Use q not r in constraint.
From-SVN: r33645
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a652f79..f0ce1ce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-05-03 Jason R Thorpe <thorpej@zembu.com> + + * config/i386/i386.md (lshrqi2_cmpno): Use q not r in constraint. + 2000-05-03 Richard Henderson <rth@cygnus.com> * mklibgcc.in: Restrict OLDCC=GCC test to native. Equate diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 8b9b253..9e558f2 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -6561,7 +6561,7 @@ (lshiftrt:QI (match_operand:QI 1 "nonimmediate_operand" "0") (match_operand:QI 2 "immediate_operand" "I")) (const_int 0))) - (set (match_operand:QI 0 "nonimmediate_operand" "=rm") + (set (match_operand:QI 0 "nonimmediate_operand" "=qm") (lshiftrt:QI (match_dup 1) (match_dup 2)))] "ix86_match_ccmode (insn, CCNOmode) && ix86_binary_operator_ok (LSHIFTRT, QImode, operands)" |