Switched to using the new memcpy implementation.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
This patch largely looks good, but I have a question inline.
libc/src/math/round_redirector.cpp | ||
---|---|---|
16 | This comment is not quite the right thing to say. This is a redirector so the expectation is to call round from the system libc. | |
17 | Redirected calls should not need NOLINT annotations. Calling into system libc is correct by design. What is failing without this NOLINT annotation? | |
libc/src/string/strcpy.cpp | ||
18 | Yes. Wait for D77279 and absorb the change here. | |
libc/test/src/string/CMakeLists.txt | ||
14 | Can you add a TODO (sivachandra) here and below to remove the redundant deps? |
This comment is not quite the right thing to say. This is a redirector so the expectation is to call round from the system libc.