diff --git a/libc/test/src/string/memory_utils/memory_check_utils.h b/libc/test/src/string/memory_utils/memory_check_utils.h index 930161a95d929..46c362d6b3701 100644 --- a/libc/test/src/string/memory_utils/memory_check_utils.h +++ b/libc/test/src/string/memory_utils/memory_check_utils.h @@ -75,8 +75,8 @@ static inline void Randomize(cpp::span buffer) { } // Copy one span to another. -__attribute__((no_builtin)) static inline void -ReferenceCopy(cpp::span dst, const cpp::span src) { +static inline void ReferenceCopy(cpp::span dst, + const cpp::span src) { assert(dst.size() == src.size()); for (size_t i = 0; i < dst.size(); ++i) dst[i] = src[i];