Commit 5e46c560 by Kazu Hirata Committed by Kazu Hirata

h8300.md (define_asm_attributes): Specify the length of an asm insn more precisely.

	* config/h8300/h8300.md (define_asm_attributes): Specify
	the length of an asm insn more precisely.

From-SVN: r72289
parent 1e2eb6e8
2003-10-09 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (define_asm_attributes): Specify
the length of an asm insn more precisely.
2003-10-09 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2003-10-09 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config/mips/iris6.h (SUBTARGET_CPP_SPEC): Define. * config/mips/iris6.h (SUBTARGET_CPP_SPEC): Define.
......
...@@ -106,7 +106,11 @@ ...@@ -106,7 +106,11 @@
;; statement. The maximum length of 14 bytes is achieved on H8SX. ;; statement. The maximum length of 14 bytes is achieved on H8SX.
(define_asm_attributes (define_asm_attributes
[(set_attr "length" "14")]) [(set (attr "length")
(cond [(ne (symbol_ref "TARGET_H8300") (const_int 0)) (const_int 4)
(ne (symbol_ref "TARGET_H8300H") (const_int 0)) (const_int 10)
(ne (symbol_ref "TARGET_H8300S") (const_int 0)) (const_int 10)]
(const_int 14)))])
;; ---------------------------------------------------------------------- ;; ----------------------------------------------------------------------
;; MOVE INSTRUCTIONS ;; MOVE INSTRUCTIONS
......
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