[llvm] [HLSL] Analyze update counter usage (PR #130356)

Ashley Coleman via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 14:18:30 PST 2025


================
@@ -816,6 +816,8 @@ class OpLowerer {
 PreservedAnalyses DXILOpLowering::run(Module &M, ModuleAnalysisManager &MAM) {
   DXILBindingMap &DBM = MAM.getResult<DXILResourceBindingAnalysis>(M);
   DXILResourceTypeMap &DRTM = MAM.getResult<DXILResourceTypeAnalysis>(M);
+  DXILResourceCounterDirectionMap &DRCDM =
----------------
V-FEXrt wrote:

This is cheeky and adds as "unused variable" warning. It seems I need to do this in order to actually cause run function to run. Otherwise the validation doesn't happen.

Any suggestions on how to force the pass to run even if its not directly consumed anywhere?

https://github.com/llvm/llvm-project/pull/130356


More information about the llvm-commits mailing list