We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004badd commit ecfccb0Copy full SHA for ecfccb0
svf-llvm/tools/SABER/saber.cpp
@@ -47,15 +47,9 @@ int main(int argc, char ** argv)
47
argc, argv, "Source-Sink Bug Detector", "[options] <input-bitcode...>"
48
);
49
50
- SVFIRBuilder builder;
51
- SVFIR* pag;
52
- if (Options::WriteAnder() == "ir_annotator")
53
- {
54
- LLVMModuleSet::preProcessBCs(moduleNameVec);
55
- }
56
-
57
LLVMModuleSet::buildSVFModule(moduleNameVec);
58
- pag = builder.build();
+ SVFIRBuilder builder;
+ SVFIR* pag = builder.build();
59
60
61
std::unique_ptr<LeakChecker> saber;
@@ -76,3 +70,4 @@ int main(int argc, char ** argv)
76
70
return 0;
77
71
78
72
}
73
+
0 commit comments