diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2013-01-07 21:29:39 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2013-01-07 21:29:39 +0000 |
commit | a3f10f13847d6cfaa89c8dea21c5e4262b549238 (patch) | |
tree | aa8435a6e804ee676c74d70c169edaee46421343 /newlib | |
parent | 98f16610ca0e56d63679b8a2c079e9d8761649cb (diff) | |
download | newlib-a3f10f13847d6cfaa89c8dea21c5e4262b549238.zip newlib-a3f10f13847d6cfaa89c8dea21c5e4262b549238.tar.gz newlib-a3f10f13847d6cfaa89c8dea21c5e4262b549238.tar.bz2 |
2013-01-07 Steve Ellcey <sellcey@mips.com>
* libc/machine/mips/memcpy.S (memcpy): Check if _MIPS_SIM is set.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/machine/mips/memcpy.S | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index df6fa0b..a0eefe8 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2013-01-07 Steve Ellcey <sellcey@mips.com> + + * libc/machine/mips/memcpy.S (memcpy): Check if _MIPS_SIM is set. + 2012-12-20 Jeff Johnston <jjohnstn@redhat.com> * NEWS: Update with 2.0.0 info. diff --git a/newlib/libc/machine/mips/memcpy.S b/newlib/libc/machine/mips/memcpy.S index fe7cb15..574f549 100644 --- a/newlib/libc/machine/mips/memcpy.S +++ b/newlib/libc/machine/mips/memcpy.S @@ -56,7 +56,7 @@ #endif #endif -#if (_MIPS_SIM == _ABI64) || (_MIPS_SIM == _ABIN32) +#if defined(_MIPS_SIM) && ((_MIPS_SIM == _ABI64) || (_MIPS_SIM == _ABIN32)) #ifndef DISABLE_DOUBLE #define USE_DOUBLE #endif @@ -203,7 +203,7 @@ #define REG1 t1 #define REG2 t2 #define REG3 t3 -#if _MIPS_SIM == _ABIO32 +#if defined(_MIPS_SIM) && (_MIPS_SIM == _ABIO32 || _MIPS_SIM == _ABIO64) # define REG4 t4 # define REG5 t5 # define REG6 t6 |