[llvm] [HLSL] Fix Root signature test error (PR #127261)

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 14 14:12:37 PST 2025


================
@@ -186,20 +187,23 @@ PreservedAnalyses RootSignatureAnalysisPrinter::run(Module &M,
   OS << "Root Signature Definitions"
      << "\n";
   uint8_t Space = 0;
-  for (const auto &P : RSDMap) {
-    const auto &[Function, RSD] = P;
-    OS << "Definition for '" << Function->getName() << "':\n";
+  for (const auto &F : M) {
+    const auto &RSD = RSDMap.find(&F);
----------------
bogner wrote:

The type here is `SmallDenseMap<const Function *, mcdxbc::RootSignatureDesc>::iterator` - since this is actually a copy we shouldn't use a const reference here.
```suggestion
    auto It = RSDMap.find(&F);
```

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


More information about the llvm-commits mailing list