Commit 4aa95f0d by Jeffrey A Law Committed by Jeff Law

* pa.md (negdi2): Turn into expander + anonymous pattern.

From-SVN: r30374
parent 6f04382a
......@@ -4,6 +4,8 @@ Wed Nov 3 12:12:59 1999 Bernd Schmidt <bernds@cygnus.co.uk>
Wed Nov 3 03:26:28 1999 Jeffrey A Law (law@cygnus.com)
* pa.md (negdi2): Turn into expander + anonymous pattern.
* reload.c (find_reloads): Fix typos in recent change.
* dwarf2out.c: Do not include ctype.h.
......
......@@ -3623,7 +3623,13 @@
[(set_attr "type" "binary")
(set_attr "length" "4")])
(define_insn "negdi2"
(define_expand "negdi2"
[(set (match_operand:DI 0 "register_operand" "")
(neg:DI (match_operand:DI 1 "register_operand" "")))]
""
"")
(define_insn ""
[(set (match_operand:DI 0 "register_operand" "=r")
(neg:DI (match_operand:DI 1 "register_operand" "r")))]
""
......
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