File tree 3 files changed +0
-5
lines changed
3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change 14
14
#include " llvm/Pass.h"
15
15
#include " llvm/Support/VersionTuple.h"
16
16
#include " llvm/TargetParser/Triple.h"
17
- #include < optional>
18
17
19
18
namespace llvm {
20
19
Original file line number Diff line number Diff line change 15
15
#include " llvm/IR/Metadata.h"
16
16
#include " llvm/IR/Module.h"
17
17
#include " llvm/InitializePasses.h"
18
- #include " llvm/Support/Casting.h"
19
18
#include " llvm/Support/ErrorHandling.h"
20
- #include < memory>
21
19
22
20
#define DEBUG_TYPE " dxil-metadata-analysis"
23
21
@@ -30,7 +28,6 @@ static ModuleMetadataInfo collectMetadataInfo(Module &M) {
30
28
MMDAI.DXILVersion = TT.getDXILVersion ();
31
29
MMDAI.ShaderModelVersion = TT.getOSVersion ();
32
30
MMDAI.ShaderProfile = TT.getEnvironment ();
33
-
34
31
NamedMDNode *ValidatorVerNode = M.getNamedMetadata (" dx.valver" );
35
32
if (ValidatorVerNode) {
36
33
auto *ValVerMD = cast<MDNode>(ValidatorVerNode->getOperand (0 ));
Original file line number Diff line number Diff line change 15
15
#include " llvm/ADT/ScopeExit.h"
16
16
#include " llvm/BinaryFormat/DXContainer.h"
17
17
#include " llvm/Support/ScopedPrinter.h"
18
- #include < cstdint>
19
18
20
19
namespace llvm {
21
20
You can’t perform that action at this time.
0 commit comments