[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) {
----------------
bogner wrote:

Better style to spell out the type if it doesn't show up elsewhere (such as in a cast).
```suggestion
  for (const Function &F : M) {
```

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


More information about the llvm-commits mailing list