patches/newlib/1.18.0/100-fix-unaligned-access-memcpy-m68k.patch
author Arnaud Lacombe <lacombar@gmail.com>
Thu Aug 05 17:59:51 2010 +0200 (2010-08-05)
changeset 2069 366bd2b22675
permissions -rw-r--r--
complibs/mpc: fix MPC 0.8.1 build with MPFR 3.0.0

This is the change introduced by revision 734 of MPC repository.

Author: Paul Zimmermann <Paul.Zimmermann@loria.fr>
Revision log: [acos.c] fixed problem with GMP_RNDA (should be MPFR_RNDA, and code was wrong)

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
     1 The m68k mcpu processor does not like unaligned access
     2 
     3 Disable at least mcpu32, m68010 and m68020. These processors certainly
     4 do not like unaligned accesses.
     5 
     6 Signed-off-by: Remy Bohmer <linux@bohmer.net>
     7 ---
     8  newlib/libc/machine/m68k/memcpy.S |    2 +-
     9  1 file changed, 1 insertion(+), 1 deletion(-)
    10 
    11 Index: newlib-1.18.0/newlib/libc/machine/m68k/memcpy.S
    12 ===================================================================
    13 --- newlib-1.18.0.orig/newlib/libc/machine/m68k/memcpy.S
    14 +++ newlib-1.18.0/newlib/libc/machine/m68k/memcpy.S
    15 @@ -15,7 +15,7 @@
    16  
    17  #include "m68kasm.h"
    18  
    19 -#if defined (__mcoldfire__) || defined (__mcpu32__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
    20 +#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
    21  # define MISALIGNED_OK 1
    22  #else
    23  # define MISALIGNED_OK 0