diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | sysdeps/mips/sgidefs.h | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2015-02-16 Joseph Myers <joseph@codesourcery.com> + * sysdeps/mips/sgidefs.h [!_ABIO64] (_ABIO64): New macro. + * sysdeps/mips/memcpy.S [_COMPILING_NEWLIB]: Change condition to [defined _COMPILING_NEWLIB]. * sysdeps/mips/memset.S [_COMPILING_NEWLIB]: Likewise. diff --git a/sysdeps/mips/sgidefs.h b/sysdeps/mips/sgidefs.h index 1a9f7b0..9fb3b37 100644 --- a/sysdeps/mips/sgidefs.h +++ b/sysdeps/mips/sgidefs.h @@ -69,4 +69,8 @@ #endif #define _MIPS_SIM_ABI64 _ABI64 +#ifndef _ABIO64 +# define _ABIO64 4 +#endif + #endif /* sgidefs.h */ |