Really it should be named print<alias-sets>, but for the sake of
changing fewer tests, added a TODO to rename after NPM switch and test
cleanup.
Details
Details
- Reviewers
ychen asbirlea - Commits
- rGf4ea0f98142a: [NewPM] Port -print-alias-sets to NPM
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Analysis/AliasSetTracker.cpp | ||
---|---|---|
752 | No strong feeling but I'm not really sure how big AliasSetTracker it could go or if it owns a lot of memory. This does not look like a critical path to make putting it on stack worthwhile. Play safe and keep it on the heap? |
llvm/lib/Analysis/AliasSetTracker.cpp | ||
---|---|---|
752 | AliasSetTracker doesn't look special, it seems like a normal class with normal member variables with normal sizes. |
No strong feeling but I'm not really sure how big AliasSetTracker it could go or if it owns a lot of memory. This does not look like a critical path to make putting it on stack worthwhile. Play safe and keep it on the heap?