[llvm] [InstCombine] Collect users iteratively (PR #131956)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 20:51:44 PDT 2025
================
@@ -270,77 +270,87 @@ class PointerReplacer {
} // end anonymous namespace
bool PointerReplacer::collectUsers() {
- if (!collectUsersRecursive(Root))
- return false;
+ std::stack<User *> Worklist;
----------------
arsenm wrote:
Use SmallVector?
https://github.com/llvm/llvm-project/pull/131956
More information about the llvm-commits
mailing list