* libc/machine/mips/memcpy.S: Fix USE_PREFETCH check.
This commit is contained in:
parent
c6371eeb8d
commit
aa102a6a57
|
@ -1,3 +1,7 @@
|
|||
2013-02-19 Steve Ellcey <sellcey@mips.com>
|
||||
|
||||
* libc/machine/mips/memcpy.S: Fix USE_PREFETCH check.
|
||||
|
||||
2013-02-01 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* libc/sys/sysnecv850/crt0.S: Add recognition of the e3v5
|
||||
|
|
|
@ -49,8 +49,11 @@
|
|||
#include <sys/asm.h>
|
||||
#endif
|
||||
|
||||
#if (_MIPS_ISA == _MIPS_ISA_MIPS4) || (_MIPS_ISA == _MIPS_ISA_MIPS5) || \
|
||||
(_MIPS_ISA == _MIPS_ISA_MIPS32) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
|
||||
/* Check to see if the MIPS architecture we are compiling for supports
|
||||
* prefetching.
|
||||
*/
|
||||
|
||||
#if (__mips == 4) || (__mips == 5) || (__mips == 32) || (__mips == 64)
|
||||
#ifndef DISABLE_PREFETCH
|
||||
#define USE_PREFETCH
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue