File tree Expand file tree Collapse file tree 7 files changed +10
-9
lines changed Expand file tree Collapse file tree 7 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ class Vocabulary {
227
227
LLVM_ABI static VocabVector createDummyVocabForTest (unsigned Dim = 1 );
228
228
229
229
LLVM_ABI bool invalidate (Module &M, const PreservedAnalyses &PA,
230
- ModuleAnalysisManager::Invalidator &Inv) const ;
230
+ ModuleAnalysisManager::Invalidator &Inv) const ;
231
231
};
232
232
233
233
// / Embedder provides the interface to generate embeddings (vector
Original file line number Diff line number Diff line change 15
15
#ifndef LLVM_BINARYFORMAT_SFRAME_H
16
16
#define LLVM_BINARYFORMAT_SFRAME_H
17
17
18
- #include " llvm/Support/Compiler.h"
19
18
#include " llvm/ADT/ArrayRef.h"
20
19
#include " llvm/ADT/BitmaskEnum.h"
20
+ #include " llvm/Support/Compiler.h"
21
21
#include " llvm/Support/DataTypes.h"
22
22
#include " llvm/Support/Endian.h"
23
23
Original file line number Diff line number Diff line change 14
14
#ifndef LLVM_EXECUTIONENGINE_ORC_EPCINDIRECTIONUTILS_H
15
15
#define LLVM_EXECUTIONENGINE_ORC_EPCINDIRECTIONUTILS_H
16
16
17
- #include " llvm/Support/Compiler.h"
18
17
#include " llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h"
19
18
#include " llvm/ExecutionEngine/Orc/IndirectionUtils.h"
20
19
#include " llvm/ExecutionEngine/Orc/LazyReexports.h"
20
+ #include " llvm/Support/Compiler.h"
21
21
22
22
#include < mutex>
23
23
@@ -104,8 +104,8 @@ class EPCIndirectionUtils {
104
104
// / Write resolver code to the executor process and return its address.
105
105
// / This must be called before any call to createTrampolinePool or
106
106
// / createLazyCallThroughManager.
107
- LLVM_ABI Expected<ExecutorAddr> writeResolverBlock (ExecutorAddr ReentryFnAddr,
108
- ExecutorAddr ReentryCtxAddr);
107
+ LLVM_ABI Expected<ExecutorAddr>
108
+ writeResolverBlock (ExecutorAddr ReentryFnAddr, ExecutorAddr ReentryCtxAddr);
109
109
110
110
// / Returns the address of the Resolver block. Returns zero if the
111
111
// / writeResolverBlock method has not previously been called.
Original file line number Diff line number Diff line change 13
13
#ifndef LLVM_EXECUTIONENGINE_ORC_SPECULATEANALYSES_H
14
14
#define LLVM_EXECUTIONENGINE_ORC_SPECULATEANALYSES_H
15
15
16
- #include " llvm/Support/Compiler.h"
17
16
#include " llvm/Analysis/BranchProbabilityInfo.h"
18
17
#include " llvm/ExecutionEngine/Orc/Core.h"
19
18
#include " llvm/ExecutionEngine/Orc/Speculation.h"
19
+ #include " llvm/Support/Compiler.h"
20
20
21
21
namespace llvm {
22
22
Original file line number Diff line number Diff line change 22
22
#ifndef LLVM_TRANSFORMS_SCALAR_REASSOCIATE_H
23
23
#define LLVM_TRANSFORMS_SCALAR_REASSOCIATE_H
24
24
25
- #include " llvm/Support/Compiler.h"
26
25
#include " llvm/ADT/DenseMap.h"
27
26
#include " llvm/ADT/PostOrderIterator.h"
28
27
#include " llvm/ADT/SetVector.h"
29
28
#include " llvm/IR/BasicBlock.h"
30
29
#include " llvm/IR/PassManager.h"
31
30
#include " llvm/IR/ValueHandle.h"
31
+ #include " llvm/Support/Compiler.h"
32
32
#include < deque>
33
33
34
34
namespace llvm {
Original file line number Diff line number Diff line change 14
14
#ifndef LLVM_TRANSFORMS_UTILS_MEM2REG_H
15
15
#define LLVM_TRANSFORMS_UTILS_MEM2REG_H
16
16
17
- #include " llvm/Support/Compiler.h"
18
17
#include " llvm/IR/PassManager.h"
18
+ #include " llvm/Support/Compiler.h"
19
19
20
20
namespace llvm {
21
21
Original file line number Diff line number Diff line change @@ -52,4 +52,5 @@ Expected<SFrameParser<E>> SFrameParser<E>::create(ArrayRef<uint8_t> Contents) {
52
52
}
53
53
54
54
template class LLVM_EXPORT_TEMPLATE llvm::object::SFrameParser<endianness::big>;
55
- template class LLVM_EXPORT_TEMPLATE llvm::object::SFrameParser<endianness::little>;
55
+ template class LLVM_EXPORT_TEMPLATE
56
+ llvm::object::SFrameParser<endianness::little>;
You can’t perform that action at this time.
0 commit comments