Commit 7f8b3eb0 by Kazu Hirata Committed by Kazu Hirata

h8300.md (call): Fix the insn lengths.

	* config/h8300/h8300.md (call): Fix the insn lengths.
	(call_value): Likewise.

From-SVN: r68501
parent 4d7d0451
2003-06-25 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (call): Fix the insn lengths.
(call_value): Likewise.
Thu Jun 26 00:13:35 CEST 2003 Jan Hubicka <jh@suse.cz>
* c-common.c (handle_used_attribute): Use mark_referenced.
......
......@@ -1806,8 +1806,8 @@
[(set_attr "cc" "clobber")
(set (attr "length")
(if_then_else (match_operand:QI 0 "small_call_insn_operand" "")
(const_int 4)
(const_int 8)))])
(const_int 2)
(const_int 4)))])
;; Call subroutine, returning value in operand 0
;; (which must be a hard register).
......@@ -1830,8 +1830,8 @@
[(set_attr "cc" "clobber")
(set (attr "length")
(if_then_else (match_operand:QI 0 "small_call_insn_operand" "")
(const_int 4)
(const_int 8)))])
(const_int 2)
(const_int 4)))])
(define_insn "nop"
[(const_int 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