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.
|
#pragma once
|
|
#include <obf/pass.hpp>
|
|
|
|
namespace theo::obf {
|
|
class jcc_rewrite_pass_t : public pass_t {
|
|
explicit jcc_rewrite_pass_t() : pass_t(decomp::sym_type_t::instruction){};
|
|
|
|
public:
|
|
static jcc_rewrite_pass_t* get();
|
|
void run(decomp::symbol_t* sym);
|
|
};
|
|
} // namespace theo::obf
|