-
Notifications
You must be signed in to change notification settings - Fork 611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ppl: use constraints, mirrored pins and pin groups stored in odb #6824
base: master
Are you sure you want to change the base?
ppl: use constraints, mirrored pins and pin groups stored in odb #6824
Conversation
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
getBlock()->dbuToMicrons(interval.getEnd()), | ||
getEdgeString(interval.getEdge())); | ||
constraints_.push_back( | ||
Constraint(std::move(pins), Direction::invalid, interval)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: std::move of the const variable 'pins' has no effect; remove std::move() or make the variable non-const [performance-move-const-arg]
Constraint(std::move(pins), Direction::invalid, interval)); | |
Constraint(pins, Direction::invalid, interval)); |
getBlock()->dbuToMicrons(interval.getEnd()), | ||
getEdgeString(interval.getEdge())); | ||
constraints_.push_back( | ||
Constraint(std::move(pins), Direction::invalid, interval)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: use emplace_back instead of push_back [modernize-use-emplace]
Constraint(std::move(pins), Direction::invalid, interval)); | |
constraints_.emplace_back(std::move(pins), Direction::invalid, interval); |
No description provided.