#ifndef MIGRAPH_GUARD_RTGLIB_DEAD_CODE_ELIMINATION_HPP #define MIGRAPH_GUARD_RTGLIB_DEAD_CODE_ELIMINATION_HPP #include #include #include namespace migraph { inline namespace MIGRAPH_INLINE_NS { struct program; struct dead_code_elimination { std::string name() const { return "dead_code_elimination"; } void apply(program& p) const; }; } // inline namespace MIGRAPH_INLINE_NS } // namespace migraph #endif