We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c5723 commit 8b7c3b0Copy full SHA for 8b7c3b0
1 file changed
tools/cage/src/CaGe.cpp
@@ -52,7 +52,7 @@ Plugin* loadPlugin(const std::string& pluginPath) {
52
return nullptr;
53
}
54
auto getPlugin = reinterpret_cast<Plugin* (*)()>(sym);
55
- Plugin* loadedPlugin=getPlugin();
+ Plugin* loadedPlugin = getPlugin();
56
metacg::MCGLogger::logInfo("Successfully loaded Plugin: {}", loadedPlugin->getPluginName());
57
return loadedPlugin;
58
@@ -85,7 +85,6 @@ PreservedAnalyses CaGe::run(Module& M, ModuleAnalysisManager& MA) {
85
86
87
88
-
89
if (!gen.run(M, &MA))
90
return PreservedAnalyses::all();
91
0 commit comments