linux@1902: The m68k mcpu processor does not like unaligned access linux@1902: linux@1902: Disable at least mcpu32, m68010 and m68020. These processors certainly linux@1902: do not like unaligned accesses. linux@1902: linux@1902: Signed-off-by: Remy Bohmer yann@2539: [yann.morin.1998@anciens.enib.fr: update for 1.19.0 from 1.18.0] yann@2539: Signed-off-by: "Yann E. MORIN" linux@1902: --- linux@1902: newlib/libc/machine/m68k/memcpy.S | 2 +- linux@1902: 1 file changed, 1 insertion(+), 1 deletion(-) linux@1902: yann@2539: Index: newlib-1.19.0/newlib/libc/machine/m68k/memcpy.S linux@1902: =================================================================== yann@2539: --- newlib-1.19.0.orig/newlib/libc/machine/m68k/memcpy.S yann@2539: +++ newlib-1.19.0/newlib/libc/machine/m68k/memcpy.S linux@1902: @@ -15,7 +15,7 @@ linux@1902: linux@1902: #include "m68kasm.h" linux@1902: yann@2539: -#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__) linux@1902: +#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__) linux@1902: # define MISALIGNED_OK 1 linux@1902: #else linux@1902: # define MISALIGNED_OK 0