[PATCH] D133422: [amdgpu] Expand all ConstantExpr users of LDS variables in instructions
Stanislav Mekhanoshin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 12 11:11:40 PDT 2022
rampitec added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp:165
+ // Find all ConstantExpr that are direct users of an LDS global
+ SmallVector<ConstantExpr *> Stack;
+ for (auto &GV : M.globals())
----------------
Should this be a SetVector?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133422/new/
https://reviews.llvm.org/D133422
More information about the llvm-commits
mailing list