MCPcopy Create free account
hub / github.com/argotorg/solidity / run

Method run

libyul/optimiser/DeadCodeEliminator.cpp:37–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35using namespace solidity::yul;
36
37void DeadCodeEliminator::run(OptimiserStepContext& _context, Block& _ast)
38{
39 ControlFlowSideEffectsCollector sideEffects(_context.dialect, _ast);
40 DeadCodeEliminator{
41 _context.dialect,
42 sideEffects.functionSideEffectsNamed()
43 }(_ast);
44}
45
46void DeadCodeEliminator::operator()(ForLoop& _for)
47{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected