#pragma once #include namespace theo::obf { class jcc_rewrite_pass_t : public pass_t { explicit jcc_rewrite_pass_t() : pass_t(decomp::sym_type_t::inst_split){}; public: static jcc_rewrite_pass_t* get() { static jcc_rewrite_pass_t obj; return &obj; } void run(decomp::symbol_t* sym){}; }; } // namespace theo::comp::obf