diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-04-02 18:12:00 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-04-02 10:12:00 -0800 |
commit | 52c18286ff5f35266ef45c01983397cad00d01e7 (patch) | |
tree | 9e2ffb4fb38f0a4bf13e3652d3be775db2a5fd04 /gcc/config/i386/i386.md | |
parent | 0b41abe6683830ae22978f43f085a59094f5b062 (diff) | |
download | gcc-52c18286ff5f35266ef45c01983397cad00d01e7.tar.gz |
Fix x86 core dump on regex.c
Fix x86 core dump on regex.c
* i386.md (movqi+1): Change alternative 1 from *r/r to *r/*rn.
From-SVN: r18966
Diffstat (limited to 'gcc/config/i386/i386.md')
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index ae084aee83f..9de8a93e1fb 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -1095,7 +1095,7 @@ (define_insn "" [(set (match_operand:QI 0 "nonimmediate_operand" "=q,*r,qm") - (match_operand:QI 1 "general_operand" "*g,r,qn"))] + (match_operand:QI 1 "general_operand" "*g,*rn,qn"))] "(!TARGET_MOVE || GET_CODE (operands[0]) != MEM) || (GET_CODE (operands[1]) != MEM)" "* { |