diff options
author | Jan Hubicka <jh@suse.cz> | 2001-06-24 21:23:47 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-06-24 19:23:47 +0000 |
commit | 1ac826449f7bd552a450e693f665a4071f9eec07 (patch) | |
tree | ef1e949cf8e78e62bdce752d5c9fa891fc612f76 /gcc | |
parent | c1c455a71d130dcbf413f0c9451bcc8287d24b41 (diff) | |
download | gcc-1ac826449f7bd552a450e693f665a4071f9eec07.zip gcc-1ac826449f7bd552a450e693f665a4071f9eec07.tar.gz gcc-1ac826449f7bd552a450e693f665a4071f9eec07.tar.bz2 |
* (movsi_insv_1, movsi_insv_1_rex64): Allow immediate operand.
From-SVN: r43544
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 ded2942..3d184288 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sun Jun 24 21:21:49 CEST 2001 Jan Hubicka <jh@suse.cz> + + * (movsi_insv_1, movsi_insv_1_rex64): Allow immediate operand. + 2001-06-24 Richard Henderson <rth@redhat.com> * builtins.c (expand_builtin_expect_jump): Disable if the diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index fe341a3..2b4954c 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 "nonimmediate_operand" "Qm"))] + (match_operand:SI 1 "general_operand" "Qmi"))] "!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 "register_operand" "Q"))] + (match_operand:SI 1 "nonmemory_operand" "Qi"))] "TARGET_64BIT" "mov{b}\\t{%b1, %h0|%h0, %b1}" [(set_attr "type" "imov") |