mirror of
https://github.com/lifting-bits/remill
synced 2026-06-21 13:56:07 +00:00
bin:lift: Reflect change in IntrinsicTable ctors.
This commit is contained in:
+1
-1
@@ -264,7 +264,7 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
Memory memory = UnhexlifyInputBytes(addr_mask);
|
||||
SimpleTraceManager manager(memory);
|
||||
remill::IntrinsicTable intrinsics(module);
|
||||
remill::IntrinsicTable intrinsics(module.get());
|
||||
remill::InstructionLifter inst_lifter(arch, intrinsics);
|
||||
remill::TraceLifter trace_lifter(inst_lifter, manager);
|
||||
|
||||
|
||||
@@ -31,9 +31,6 @@ namespace remill {
|
||||
|
||||
class IntrinsicTable {
|
||||
public:
|
||||
inline explicit IntrinsicTable(const std::unique_ptr<llvm::Module> &module)
|
||||
: IntrinsicTable(module.get()) {}
|
||||
|
||||
explicit IntrinsicTable(llvm::Module *module);
|
||||
|
||||
llvm::Function *const error;
|
||||
|
||||
Reference in New Issue
Block a user