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 a43f134 commit f620635Copy full SHA for f620635
vpr/src/place/place_macro.cpp
@@ -246,7 +246,7 @@ static bool try_combine_macros(std::vector<std::vector<ClusterBlockId>>& pl_macr
246
old_macro_it = old_macro_blocks.begin();
247
new_macro_it = std::find(new_macro_blocks.begin(), new_macro_blocks.end(), *old_macro_it);
248
// if matching is from the middle of the two macros, then combining macros is not possible
249
- if (new_macro_it == old_macro_blocks.end()) {
+ if (new_macro_it == new_macro_blocks.end()) {
250
return false;
251
}
252
0 commit comments