* libc/machine/mips/memcpy.S: Fix USE_PREFETCH check.

This commit is contained in:
Corinna Vinschen 2013-02-19 07:31:04 +00:00
parent c6371eeb8d
commit aa102a6a57
2 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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