Commit ffdf5eae by Kazu Hirata Committed by Kazu Hirata

* config/h8300/h8300.md (two anonymous test insns): New.

From-SVN: r58930
parent 7069c221
2002-11-08 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (two anonymous test insns): New.
Fri Nov 8 11:20:19 CET 2002 Jan Hubicka <jh@suse.cz>
* jump.c (mark_jump_label): Handle subregs of label_refs.
......
......@@ -613,6 +613,15 @@
[(set_attr "length" "2")
(set_attr "cc" "set_znv")])
(define_insn ""
[(set (cc0)
(and:HI (match_operand:HI 0 "register_operand" "r")
(const_int -256)))]
""
"mov.b %t0,%t0"
[(set_attr "length" "2")
(set_attr "cc" "set_znv")])
(define_insn "tstsi"
[(set (cc0) (match_operand:SI 0 "register_operand" "r"))]
"TARGET_H8300H || TARGET_H8300S"
......@@ -620,6 +629,15 @@
[(set_attr "length" "2")
(set_attr "cc" "set_znv")])
(define_insn ""
[(set (cc0)
(and:SI (match_operand:SI 0 "register_operand" "r")
(const_int -65536)))]
""
"mov.w %e0,%e0"
[(set_attr "length" "2")
(set_attr "cc" "set_znv")])
(define_insn "cmpqi"
[(set (cc0)
(compare:QI (match_operand:QI 0 "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