Commit 5e0afe46 authored by kazu's avatar kazu
Browse files

* config/i386/i386.md (*movqi_insv_2): Remove AND in the

	set source.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75269 138bc75d-0d04-0410-961f-82ee72b054a4
parent 7d80055a
2003-12-31 Kazu Hirata <kazu@cs.umass.edu>
* config/i386/i386.md (*movqi_insv_2): Remove AND in the
set source.
2003-12-31 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
 
* config.gcc: Added m32r-linux m32rle-elf and m32le-linux targets.
......
......@@ -1777,9 +1777,8 @@
[(set (zero_extract:SI (match_operand 0 "ext_register_operand" "+Q")
(const_int 8)
(const_int 8))
(and:SI (lshiftrt:SI (match_operand:SI 1 "register_operand" "Q")
(const_int 8))
(const_int 255)))]
(lshiftrt:SI (match_operand:SI 1 "register_operand" "Q")
(const_int 8)))]
""
"mov{b}\t{%h1, %h0|%h0, %h1}"
[(set_attr "type" "imov")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment