summaryrefslogtreecommitdiff
path: root/test/gtest/local-graph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Mark Result and MaybeResult [[nodiscard]] (#7083)Thomas Lively2024-11-151-8/+8
| | | | | | Since these types may be carrying errors that need to be handled or propagated, it is always an error not to use them in some way. Adding the [[nodiscard]] attribute caused the compiler to find a few instances where we were incorrectly ignoring results. Fix these places.
* LocalGraph::canMoveSet (#7039)Alon Zakai2024-11-111-0/+347
This new API lets us ask if a set can be safely moved to a new position. The new position must be the location of an expression from a particular class (this allows us to populate the IR once and then query any of those locations).