Switched to using the new memcpy implementation.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
This patch largely looks good, but I have a question inline.
libc/src/math/round_redirector.cpp | ||
---|---|---|
16 ↗ | (On Diff #254361) | 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 ↗ | (On Diff #254361) | 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 | ||
19 | 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? |
Should we wait for D77279 to use __llvm_libc::strlen?