deadstores icon indicating copy to clipboard operation
deadstores copied to clipboard

A Valgrind tool for finding redundant loads/stores

Results 1 deadstores issues
Sort by recently updated
recently updated
newest added

Can this tool find unnecessary updates, e.g., batching updates to a counter? I encountered a situation with `string_view` recently that looks like: ```c++ void func(); void test(std::string_view *p, size_t n)...