diff options
author | gjl <gjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-07 10:39:42 +0000 |
---|---|---|
committer | gjl <gjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-07 10:39:42 +0000 |
commit | 3abce2318cb8b50a97698bafe1edaa33296b7720 (patch) | |
tree | b409c9d0bf3a477306631d06addb4c3454a90cf3 /libgcc | |
parent | 69a2907cef65a3362d0ba9207d63798e29b3d430 (diff) | |
download | gcc-3abce2318cb8b50a97698bafe1edaa33296b7720.tar.gz |
PR target/52507
* config/avr/lib1funcs.S (__movmemx_hi): Fix loop label in RAM-part.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/avr/lib1funcs.S | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 95024243732..ee36c451a28 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,5 +1,10 @@ 2012-03-07 Georg-Johann Lay <avr@gjlay.de> + PR target/52507 + * config/avr/lib1funcs.S (__movmemx_hi): Fix loop label in RAM-part. + +2012-03-07 Georg-Johann Lay <avr@gjlay.de> + PR target/52505 * config/avr/lib1funcs.S (__xload_1): Don't read unintentionally from RAM. diff --git a/libgcc/config/avr/lib1funcs.S b/libgcc/config/avr/lib1funcs.S index 6e6c390059b..9bd235bb7b0 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 |