diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/string/mips/memcpy.S | 2 | ||||
-rw-r--r-- | libc/string/mips/memset.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/mips/memcpy.S b/libc/string/mips/memcpy.S index 59f9f0a3a..3825875f1 100644 --- a/libc/string/mips/memcpy.S +++ b/libc/string/mips/memcpy.S @@ -39,7 +39,7 @@ #if (_MIPS_ISA == _MIPS_ISA_MIPS4) || (_MIPS_ISA == _MIPS_ISA_MIPS5) || \ (_MIPS_ISA == _MIPS_ISA_MIPS32) || (_MIPS_ISA == _MIPS_ISA_MIPS64) -# ifndef DISABLE_PREFETCH +# ifdef __UCLIBC_USE_MIPS_PREFETCH__ # define USE_PREFETCH # endif #endif diff --git a/libc/string/mips/memset.S b/libc/string/mips/memset.S index 43034cebb..1c9f14c8c 100644 --- a/libc/string/mips/memset.S +++ b/libc/string/mips/memset.S @@ -37,7 +37,7 @@ prefetching. */ #if (__mips == 4) || (__mips == 5) || (__mips == 32) || (__mips == 64) -# ifndef DISABLE_PREFETCH +# ifdef __UCLIBC_USE_MIPS_PREFETCH__ # define USE_PREFETCH # endif #endif |