Skip to content

Commit

Permalink
Remove all instances of the black box modules
Browse files Browse the repository at this point in the history
  • Loading branch information
RCoeurjoly committed Aug 27, 2024
1 parent 734ea52 commit 57d2170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/sat/cutpoint.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ struct CutpointPass : public Pass {
}
}
std::ostringstream pattern;

for (size_t i = 0; i < blackbox_module_names.size(); ++i) {
pattern << blackbox_module_names[i].str();
if (i != blackbox_module_names.size() - 1) {
Expand All @@ -81,6 +80,7 @@ struct CutpointPass : public Pass {
}
if (!pattern.str().empty()) {
args.push_back(pattern.str());
args.push_back("t:" + pattern.str());
}
}

Expand Down

0 comments on commit 57d2170

Please sign in to comment.