aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-06-25 22:16:31 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-06-25 22:16:31 +0000
commit7f8b3eb0cc48db3abe67b3988e4d3297ee499d32 (patch)
treee97c8834f8df0cbaeeff4b75a27c3e825a083e1a
parent4d7d0451bcd5437c1a0c2c852784427e87297024 (diff)
downloadgcc-7f8b3eb0cc48db3abe67b3988e4d3297ee499d32.zip
gcc-7f8b3eb0cc48db3abe67b3988e4d3297ee499d32.tar.gz
gcc-7f8b3eb0cc48db3abe67b3988e4d3297ee499d32.tar.bz2
h8300.md (call): Fix the insn lengths.
* config/h8300/h8300.md (call): Fix the insn lengths. (call_value): Likewise. From-SVN: r68501
-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)]