summaryrefslogtreecommitdiff
path: root/patches/newlib/1.19.0/100-fix-unaligned-access-memcpy-m68k.patch
blob: 191363a6fa4fd71ec77d5a8464a4af43c0aeb208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
The m68k mcpu processor does not like unaligned access

Disable at least mcpu32, m68010 and m68020. These processors certainly
do not like unaligned accesses.

Signed-off-by: Remy Bohmer <linux@bohmer.net>
[yann.morin.1998@anciens.enib.fr: update for 1.19.0 from 1.18.0]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 newlib/libc/machine/m68k/memcpy.S |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: newlib-1.19.0/newlib/libc/machine/m68k/memcpy.S
===================================================================
--- newlib-1.19.0.orig/newlib/libc/machine/m68k/memcpy.S
+++ newlib-1.19.0/newlib/libc/machine/m68k/memcpy.S
@@ -15,7 +15,7 @@
 
 #include "m68kasm.h"
 
-#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
+#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
 # define MISALIGNED_OK 1
 #else
 # define MISALIGNED_OK 0