Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
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))?