We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b01f7 commit 486ab88Copy full SHA for 486ab88
llvm/lib/Target/DirectX/DXILRootSignature.h
@@ -18,7 +18,6 @@
18
#include "llvm/IR/PassManager.h"
19
#include "llvm/Pass.h"
20
#include <optional>
21
-#include <utility>
22
23
namespace llvm {
24
namespace dxil {
@@ -80,6 +79,7 @@ class RootSignatureAnalysisWrapper : public ModulePass {
80
79
RootSignatureAnalysisWrapper() : ModulePass(ID) {}
81
82
const ModuleRootSignature &getRootSignature() { return MRS.value(); }
+
83
bool hasRootSignature() { return MRS.has_value(); }
84
85
bool runOnModule(Module &M) override;
0 commit comments