aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/h8300/h8300.md8
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9d8dd82..dce8c6e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+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.
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md
index 341e167..1b81c53 100644
--- a/gcc/config/h8300/h8300.md
+++ b/gcc/config/h8300/h8300.md
@@ -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)]