We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe4499 commit 25ef564Copy full SHA for 25ef564
libc/test/src/string/memory_utils/memory_check_utils.h
@@ -75,8 +75,8 @@ static inline void Randomize(cpp::span<char> buffer) {
75
}
76
77
// Copy one span to another.
78
-__attribute__((no_builtin)) static inline void
79
-ReferenceCopy(cpp::span<char> dst, const cpp::span<char> src) {
+static inline void ReferenceCopy(cpp::span<char> dst,
+ const cpp::span<char> src) {
80
assert(dst.size() == src.size());
81
for (size_t i = 0; i < dst.size(); ++i)
82
dst[i] = src[i];
0 commit comments