2013-01-07 Steve Ellcey <sellcey@mips.com>
* libc/machine/mips/memcpy.S (memcpy): Check if _MIPS_SIM is set.
This commit is contained in:
parent
98f16610ca
commit
a3f10f1384
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue