mirror of git://gcc.gnu.org/git/gcc.git
re PR target/52261 ([avr] Add support for AVR Xmega cores)
PR target/52261 * config/avr/lib1funcs.S (__AVR__XMEGA__): Fix tippo to __AVR_XMEGA__. From-SVN: r184522
This commit is contained in:
parent
4d33b77106
commit
0253a8b165
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-02-23 Georg-Johann Lay <avr@gjlay.de>
|
||||||
|
|
||||||
|
PR target/52261
|
||||||
|
* config/avr/lib1funcs.S (__AVR__XMEGA__): Fix tippo to __AVR_XMEGA__.
|
||||||
|
|
||||||
2012-02-23 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
|
2012-02-23 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
|
||||||
|
|
||||||
* config/ia64/crtbegin.S: Use HAVE_INITFINI_ARRAY_SUPPORT
|
* config/ia64/crtbegin.S: Use HAVE_INITFINI_ARRAY_SUPPORT
|
||||||
|
|
|
||||||
|
|
@ -1696,7 +1696,7 @@ DEFUN __prologue_saves__
|
||||||
sub r28,r26
|
sub r28,r26
|
||||||
out __SP_L__,r28
|
out __SP_L__,r28
|
||||||
clr r29
|
clr r29
|
||||||
#elif defined (__AVR__XMEGA__)
|
#elif defined (__AVR_XMEGA__)
|
||||||
in r28,__SP_L__
|
in r28,__SP_L__
|
||||||
in r29,__SP_H__
|
in r29,__SP_H__
|
||||||
sub r28,r26
|
sub r28,r26
|
||||||
|
|
@ -1752,7 +1752,7 @@ DEFUN __epilogue_restores__
|
||||||
add r28,r30
|
add r28,r30
|
||||||
out __SP_L__,r28
|
out __SP_L__,r28
|
||||||
mov r28, r26
|
mov r28, r26
|
||||||
#elif defined (__AVR__XMEGA__)
|
#elif defined (__AVR_XMEGA__)
|
||||||
ldd r27,Y+1
|
ldd r27,Y+1
|
||||||
add r28,r30
|
add r28,r30
|
||||||
adc r29,__zero_reg__
|
adc r29,__zero_reg__
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue