From: Jakub Jelinek Date: Thu, 21 Mar 2002 22:17:49 +0000 (+0100) Subject: avr.md (length): Fix length computation for conditional branches. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=239b8b9dd67cfcf41249d63d21a49773f5b26006;p=gcc.git avr.md (length): Fix length computation for conditional branches. * config/avr/avr.md (length): Fix length computation for conditional branches. From-SVN: r51144 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index de97f031a94..77b121f25f3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-03-21 Jakub Jelinek + + * config/avr/avr.md (length): Fix length computation for + conditional branches. + 2002-03-21 Neil Booth * Makefile.in (fold-const.o, stor-layout.o, stmt.o, diff --git a/gcc/config/avr/avr.md b/gcc/config/avr/avr.md index f432f0e3778..762288f6403 100644 --- a/gcc/config/avr/avr.md +++ b/gcc/config/avr/avr.md @@ -68,7 +68,7 @@ (le (minus (pc) (match_dup 0)) (const_int 2045))) (const_int 2) - (const_int 2))) + (const_int 3))) (eq_attr "type" "branch1") (if_then_else (and (ge (minus (pc) (match_dup 0)) (const_int -62)) @@ -80,7 +80,7 @@ (le (minus (pc) (match_dup 0)) (const_int 2043))) (const_int 3) - (const_int 3)))] + (const_int 4)))] (const_int 2))) (define_insn "*pop1"