Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Time | Test | |
---|---|---|
60,060 ms | x64 debian > libFuzzer.libFuzzer::fuzzer-leak.test | |
60,040 ms | x64 debian > libFuzzer.libFuzzer::minimize_crash.test |
Event Timeline
llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | ||
---|---|---|
886–887 | nit: will this be further extended to need the switch? or include in the if ( ... && (F == LibFunc_memset_chk || F == LibFunc_memcpy_chk))? |
llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | ||
---|---|---|
886–887 | I think memset_chk and memcpy_chk are the main ones, so I updated the code to use an if instead of switch. We can use a switch if more cases are added, thanks! |
nit: will this be further extended to need the switch? or include in the if ( ... && (F == LibFunc_memset_chk || F == LibFunc_memcpy_chk))?