| 287 | } |
| 288 | |
| 289 | void * |
| 290 | kcsan_memset(void *b, int c, size_t len) |
| 291 | { |
| 292 | kcsan_access((uintptr_t)b, len, true, false, __RET_ADDR); |
| 293 | return __builtin_memset(b, c, len); |
| 294 | } |
| 295 | |
| 296 | void * |
| 297 | kcsan_memmove(void *dst, const void *src, size_t len) |
nothing calls this directly
no test coverage detected