RootOrderingTest is a low-level unit test that creates values and uses them as vertices in a directed graph. These vertices were created using builder.create, but never freed, due to my insufficient understanding of the MLIR infrastructure.
Details
- Reviewers
mehdi_amini bondhugula rriddle jdoerfert sstefan1 nicolasvasilache aartbik MaskRay sscalpone baziotis sjarus - Group Reviewers
Restricted Project
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/unittests/Conversion/PDLToPDLInterp/RootOrderingTest.cpp | ||
---|---|---|
37 | @bondhugula unsigned is an anti-pattern (unless working with bit-fields or other bit-manipulation), this has been widely documented I believe, both in C++ standardization paper (they are stuck with size_t in the standard library) and with conference talks like this one: https://www.youtube.com/watch?v=yG1OZ69H_-o |
Nit: unsigned here and below.