[llvm] [DXIL] Add support for root signature flag element in DXContainer (PR #123147)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 17:51:08 PST 2025
================
@@ -95,8 +92,14 @@ static bool parse(LLVMContext *Ctx, ModuleRootSignature *MRS, NamedMDNode *Root,
continue;
}
+ const MDOperand &FunctionPointerMdNode = Node->getOperand(0);
+ if (FunctionPointerMdNode == nullptr) {
+ // Function was pruned during compilation.
+ continue;
+ }
----------------
joaosaffran wrote:
I found this error when running test: `RootSignature-MultipleEntryFunctions.ll`. During root signature generation, function `@main` was null, since entry point was function `@anotherMain`.
https://github.com/llvm/llvm-project/pull/123147
More information about the llvm-commits
mailing list