Skip to content

Commit 3101b8e

Browse files
committed
clang-format
1 parent 9a0fa8e commit 3101b8e

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

llvm/include/llvm/Analysis/IR2Vec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class Vocabulary {
227227
LLVM_ABI static VocabVector createDummyVocabForTest(unsigned Dim = 1);
228228

229229
LLVM_ABI bool invalidate(Module &M, const PreservedAnalyses &PA,
230-
ModuleAnalysisManager::Invalidator &Inv) const;
230+
ModuleAnalysisManager::Invalidator &Inv) const;
231231
};
232232

233233
/// Embedder provides the interface to generate embeddings (vector

llvm/include/llvm/BinaryFormat/SFrame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
#ifndef LLVM_BINARYFORMAT_SFRAME_H
1616
#define LLVM_BINARYFORMAT_SFRAME_H
1717

18-
#include "llvm/Support/Compiler.h"
1918
#include "llvm/ADT/ArrayRef.h"
2019
#include "llvm/ADT/BitmaskEnum.h"
20+
#include "llvm/Support/Compiler.h"
2121
#include "llvm/Support/DataTypes.h"
2222
#include "llvm/Support/Endian.h"
2323

llvm/include/llvm/ExecutionEngine/Orc/EPCIndirectionUtils.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
#ifndef LLVM_EXECUTIONENGINE_ORC_EPCINDIRECTIONUTILS_H
1515
#define LLVM_EXECUTIONENGINE_ORC_EPCINDIRECTIONUTILS_H
1616

17-
#include "llvm/Support/Compiler.h"
1817
#include "llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h"
1918
#include "llvm/ExecutionEngine/Orc/IndirectionUtils.h"
2019
#include "llvm/ExecutionEngine/Orc/LazyReexports.h"
20+
#include "llvm/Support/Compiler.h"
2121

2222
#include <mutex>
2323

@@ -104,8 +104,8 @@ class EPCIndirectionUtils {
104104
/// Write resolver code to the executor process and return its address.
105105
/// This must be called before any call to createTrampolinePool or
106106
/// createLazyCallThroughManager.
107-
LLVM_ABI Expected<ExecutorAddr> writeResolverBlock(ExecutorAddr ReentryFnAddr,
108-
ExecutorAddr ReentryCtxAddr);
107+
LLVM_ABI Expected<ExecutorAddr>
108+
writeResolverBlock(ExecutorAddr ReentryFnAddr, ExecutorAddr ReentryCtxAddr);
109109

110110
/// Returns the address of the Resolver block. Returns zero if the
111111
/// writeResolverBlock method has not previously been called.

llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
#ifndef LLVM_EXECUTIONENGINE_ORC_SPECULATEANALYSES_H
1414
#define LLVM_EXECUTIONENGINE_ORC_SPECULATEANALYSES_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/Analysis/BranchProbabilityInfo.h"
1817
#include "llvm/ExecutionEngine/Orc/Core.h"
1918
#include "llvm/ExecutionEngine/Orc/Speculation.h"
19+
#include "llvm/Support/Compiler.h"
2020

2121
namespace llvm {
2222

llvm/include/llvm/Transforms/Scalar/Reassociate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
#ifndef LLVM_TRANSFORMS_SCALAR_REASSOCIATE_H
2323
#define LLVM_TRANSFORMS_SCALAR_REASSOCIATE_H
2424

25-
#include "llvm/Support/Compiler.h"
2625
#include "llvm/ADT/DenseMap.h"
2726
#include "llvm/ADT/PostOrderIterator.h"
2827
#include "llvm/ADT/SetVector.h"
2928
#include "llvm/IR/BasicBlock.h"
3029
#include "llvm/IR/PassManager.h"
3130
#include "llvm/IR/ValueHandle.h"
31+
#include "llvm/Support/Compiler.h"
3232
#include <deque>
3333

3434
namespace llvm {

llvm/include/llvm/Transforms/Utils/Mem2Reg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#ifndef LLVM_TRANSFORMS_UTILS_MEM2REG_H
1515
#define LLVM_TRANSFORMS_UTILS_MEM2REG_H
1616

17-
#include "llvm/Support/Compiler.h"
1817
#include "llvm/IR/PassManager.h"
18+
#include "llvm/Support/Compiler.h"
1919

2020
namespace llvm {
2121

llvm/lib/Object/SFrameParser.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,5 @@ Expected<SFrameParser<E>> SFrameParser<E>::create(ArrayRef<uint8_t> Contents) {
5252
}
5353

5454
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>;

0 commit comments

Comments
 (0)