Skip to content

Commit 273db6e

Browse files
author
joaosaffran
committed
removing useless imports
1 parent 701a1b2 commit 273db6e

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

llvm/include/llvm/Analysis/DXILMetadataAnalysis.h

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include "llvm/Pass.h"
1515
#include "llvm/Support/VersionTuple.h"
1616
#include "llvm/TargetParser/Triple.h"
17-
#include <optional>
1817

1918
namespace llvm {
2019

llvm/lib/Analysis/DXILMetadataAnalysis.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
#include "llvm/IR/Metadata.h"
1616
#include "llvm/IR/Module.h"
1717
#include "llvm/InitializePasses.h"
18-
#include "llvm/Support/Casting.h"
1918
#include "llvm/Support/ErrorHandling.h"
20-
#include <memory>
2119

2220
#define DEBUG_TYPE "dxil-metadata-analysis"
2321

@@ -30,7 +28,6 @@ static ModuleMetadataInfo collectMetadataInfo(Module &M) {
3028
MMDAI.DXILVersion = TT.getDXILVersion();
3129
MMDAI.ShaderModelVersion = TT.getOSVersion();
3230
MMDAI.ShaderProfile = TT.getEnvironment();
33-
3431
NamedMDNode *ValidatorVerNode = M.getNamedMetadata("dx.valver");
3532
if (ValidatorVerNode) {
3633
auto *ValVerMD = cast<MDNode>(ValidatorVerNode->getOperand(0));

llvm/lib/ObjectYAML/DXContainerYAML.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "llvm/ADT/ScopeExit.h"
1616
#include "llvm/BinaryFormat/DXContainer.h"
1717
#include "llvm/Support/ScopedPrinter.h"
18-
#include <cstdint>
1918

2019
namespace llvm {
2120

0 commit comments

Comments
 (0)