Commit 765a46f9 by Jan Hubicka Committed by Jan Hubicka

* i386.md (mulqi3): New pattern.

From-SVN: r32280
parent bcdaabbb
Wed Mar 1 12:14:31 MET 2000 Jan Hubicka <jh@suse.cz>
* i386.md (mulqi3): New pattern.
2000-02-29 Zack Weinberg <zack@wolery.cumb.org>
* cpplib.h (CPP_ASSERTION, CPP_STRINGIZE, CPP_TOKPASTE): New
......
......@@ -3962,6 +3962,15 @@
imul{w}\\t{%2, %0|%0, %2}"
[(set_attr "type" "imul")])
(define_insn "mulqi3"
[(set (match_operand:QI 0 "register_operand" "=a")
(mult:QI (match_operand:QI 1 "register_operand" "%0")
(match_operand:QI 2 "nonimmediate_operand" "qm")))
(clobber (reg:CC 17))]
""
"mul{b}\\t%2"
[(set_attr "type" "imul")])
(define_insn "umulqihi3"
[(set (match_operand:HI 0 "register_operand" "=a")
(mult:HI (zero_extend:HI (match_operand:QI 1 "register_operand" "%0"))
......
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