You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
346 B
16 lines
346 B
#pragma once
|
|
#include <obf/pass.hpp>
|
|
|
|
namespace theo::obf {
|
|
class next_inst_pass_t : public pass_t {
|
|
explicit next_inst_pass_t() : pass_t(decomp::sym_type_t::inst_split){};
|
|
|
|
public:
|
|
static next_inst_pass_t* get() {
|
|
static next_inst_pass_t obj;
|
|
return &obj;
|
|
}
|
|
|
|
void run(decomp::symbol_t* sym){};
|
|
};
|
|
} // namespace theo::comp::obf
|