File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- // ===- DXILResource.h - Tools to translate DXIL resources -------*- C++ -*-===//
1
+ // ===- DXILResource.h - Representations of DXIL resources -------*- C++ -*-===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #ifndef LLVM_TRANSFORMS_UTILS_DXILRESOURCE_H
10
- #define LLVM_TRANSFORMS_UTILS_DXILRESOURCE_H
9
+ #ifndef LLVM_ANALYSIS_DXILRESOURCE_H
10
+ #define LLVM_ANALYSIS_DXILRESOURCE_H
11
11
12
12
#include " llvm/IR/Metadata.h"
13
13
#include " llvm/IR/Value.h"
@@ -188,4 +188,4 @@ class ResourceInfo {
188
188
} // namespace dxil
189
189
} // namespace llvm
190
190
191
- #endif // LLVM_TRANSFORMS_UTILS_DXILRESOURCE_H
191
+ #endif // LLVM_ANALYSIS_DXILRESOURCE_H
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ add_llvm_component_library(LLVMAnalysis
59
59
DomPrinter.cpp
60
60
DomTreeUpdater.cpp
61
61
DominanceFrontier.cpp
62
+ DXILResource.cpp
62
63
FunctionPropertiesAnalysis.cpp
63
64
GlobalsModRef.cpp
64
65
GuardUtils.cpp
Original file line number Diff line number Diff line change 1
- // ===- DXILResource.cpp - Tools to translate DXIL resources ---------------===//
1
+ // ===- DXILResource.cpp - Representations of DXIL resources ---------------===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " llvm/Transforms/Utils /DXILResource.h"
9
+ #include " llvm/Analysis /DXILResource.h"
10
10
#include " llvm/ADT/APInt.h"
11
11
#include " llvm/IR/DerivedTypes.h"
12
12
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ add_llvm_component_library(LLVMTransformUtils
20
20
CountVisits.cpp
21
21
Debugify.cpp
22
22
DemoteRegToStack.cpp
23
- DXILResource.cpp
24
23
DXILUpgrade.cpp
25
24
EntryExitInstrumenter.cpp
26
25
EscapeEnumerator.cpp
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ set(ANALYSIS_TEST_SOURCES
24
24
ConstraintSystemTest.cpp
25
25
DDGTest.cpp
26
26
DomTreeUpdaterTest.cpp
27
+ DXILResourceTest.cpp
27
28
GlobalsModRefTest.cpp
28
29
FunctionPropertiesAnalysisTest.cpp
29
30
InlineCostTest.cpp
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " llvm/Transforms/Utils /DXILResource.h"
9
+ #include " llvm/Analysis /DXILResource.h"
10
10
#include " llvm/IR/Constants.h"
11
11
#include " gtest/gtest.h"
12
12
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ add_llvm_unittest(UtilsTests
18
18
CodeLayoutTest.cpp
19
19
CodeMoverUtilsTest.cpp
20
20
DebugifyTest.cpp
21
- DXILResourceTest.cpp
22
21
FunctionComparatorTest.cpp
23
22
IntegerDivisionTest.cpp
24
23
LocalTest.cpp
You can’t perform that action at this time.
0 commit comments