diff options
author | Jan Hubicka <jh@suse.cz> | 2001-06-25 11:16:37 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-06-25 09:16:37 +0000 |
commit | f47c8646071da93e7aed128b9841a2ff015f0521 (patch) | |
tree | 22b2c3e34c05cdca891bc990226b703ba95d0e9f /gcc | |
parent | 6f1acfd9b493325bb9b5055c0e19d4832c4b8975 (diff) | |
download | gcc-f47c8646071da93e7aed128b9841a2ff015f0521.zip gcc-f47c8646071da93e7aed128b9841a2ff015f0521.tar.gz gcc-f47c8646071da93e7aed128b9841a2ff015f0521.tar.bz2 |
* i386.md (movsi_insv_1, movsi_insv_1_rex64): Fix constraints.
From-SVN: r43552
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c66502..6e033da 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Jun 25 11:10:51 CEST 2001 Jan Hubicka <jh@suse.cz> + + * i386.md (movsi_insv_1, movsi_insv_1_rex64): Fix constraints. + 2001-06-25 Joseph S. Myers <jsm28@cam.ac.uk> * doc/c-tree.texi, doc/contrib.texi, doc/extend.texi, diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 2b4954c..791bf9e 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -2317,7 +2317,7 @@ [(set (zero_extract:SI (match_operand 0 "ext_register_operand" "+Q") (const_int 8) (const_int 8)) - (match_operand:SI 1 "general_operand" "Qmi"))] + (match_operand:SI 1 "general_operand" "Qmn"))] "!TARGET_64BIT" "mov{b}\\t{%b1, %h0|%h0, %b1}" [(set_attr "type" "imov") @@ -2327,7 +2327,7 @@ [(set (zero_extract:SI (match_operand 0 "ext_register_operand" "+Q") (const_int 8) (const_int 8)) - (match_operand:SI 1 "nonmemory_operand" "Qi"))] + (match_operand:SI 1 "nonmemory_operand" "Qn"))] "TARGET_64BIT" "mov{b}\\t{%b1, %h0|%h0, %b1}" [(set_attr "type" "imov") |