From 4e30d980cb5a6e0aaa9ba6da247834253f5516c8 Mon Sep 17 00:00:00 2001 From: Georg-Johann Lay Date: Wed, 7 Mar 2012 10:39:42 +0000 Subject: [PATCH] re PR target/52507 ([avr]: movmem loop for __memx address space uses wrong loop label) PR target/52507 * config/avr/lib1funcs.S (__movmemx_hi): Fix loop label in RAM-part. From-SVN: r185033 --- libgcc/ChangeLog | 5 +++++ libgcc/config/avr/lib1funcs.S | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 950242437324..ee36c451a28d 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2012-03-07 Georg-Johann Lay + + PR target/52507 + * config/avr/lib1funcs.S (__movmemx_hi): Fix loop label in RAM-part. + 2012-03-07 Georg-Johann Lay PR target/52505 diff --git a/libgcc/config/avr/lib1funcs.S b/libgcc/config/avr/lib1funcs.S index 6e6c390059b5..9bd235bb7b0f 100644 --- a/libgcc/config/avr/lib1funcs.S +++ b/libgcc/config/avr/lib1funcs.S @@ -2269,7 +2269,7 @@ DEFUN __movmemx_hi ;; and store that Byte to RAM Destination st X+, r0 sbiw LOOP, 1 - brne 0b + brne 1b ret ENDF __movmemx_hi -- 2.39.5