mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 05:19:16 -04:00
Completely reorganize the patches for this port. Patches for new devices are now synchronized with the Atmel AVR tools. The main difference is the naming scheme, as FreeBSD patches start with "patch-", while the Atmel AVR Tools patches end up in ".patch".
14 lines
536 B
Text
14 lines
536 B
Text
diff -Naurp gcc/config/avr/avr.c gcc/config/avr/avr.c
|
|
--- gcc/config/avr/avr.c 2011-06-09 14:30:33.000000000 -0500
|
|
+++ gcc/config/avr/avr.c 2011-06-09 15:33:10.000000000 -0500
|
|
@@ -3350,8 +3350,8 @@ out_movhi_mr_r (rtx insn, rtx op[], int
|
|
AS2 (out,%m0-%2,%A1));
|
|
}
|
|
if (AVR_XMEGA)
|
|
- return *l = 4, (AS2 (sts,%A0,%A1) CR_TAB
|
|
- AS2 (sts,%B0,%B1));
|
|
+ return *l = 4, (AS2 (sts,%m0,%A1) CR_TAB
|
|
+ AS2 (sts,%m0+1,%B1));
|
|
else
|
|
return *l = 4, (AS2 (sts,%m0+1,%B1) CR_TAB
|
|
AS2 (sts,%m0,%A1));
|