Skip to content

Commit 23aa89b

Browse files
committed
clang format
1 parent 03794fa commit 23aa89b

File tree

11 files changed

+15
-14
lines changed

11 files changed

+15
-14
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/CodeGen/GCMetadata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class GCFunctionInfo {
106106

107107
/// Handle invalidation explicitly.
108108
LLVM_ABI bool invalidate(Function &F, const PreservedAnalyses &PA,
109-
FunctionAnalysisManager::Invalidator &Inv);
109+
FunctionAnalysisManager::Invalidator &Inv);
110110

111111
/// getFunction - Return the function to which this metadata applies.
112112
const Function &getFunction() const { return F; }
@@ -164,7 +164,7 @@ class GCStrategyMap {
164164

165165
/// Handle invalidation explicitly.
166166
LLVM_ABI bool invalidate(Module &M, const PreservedAnalyses &PA,
167-
ModuleAnalysisManager::Invalidator &Inv);
167+
ModuleAnalysisManager::Invalidator &Inv);
168168

169169
using iterator = MapT::iterator;
170170
using const_iterator = MapT::const_iterator;

llvm/include/llvm/CodeGen/MachineInstrBundle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ LLVM_ABI PhysRegInfo AnalyzePhysRegInBundle(const MachineInstr &MI,
298298
class FinalizeBundleTestPass : public PassInfoMixin<FinalizeBundleTestPass> {
299299
public:
300300
LLVM_ABI PreservedAnalyses run(MachineFunction &MF,
301-
MachineFunctionAnalysisManager &MFAM);
301+
MachineFunctionAnalysisManager &MFAM);
302302
};
303303

304304
} // End llvm namespace

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/MC/DXContainerRootSignature.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef LLVM_MC_DXCONTAINERROOTSIGNATURE_H
1010
#define LLVM_MC_DXCONTAINERROOTSIGNATURE_H
1111

12-
#include "llvm/Support/Compiler.h"
1312
#include "llvm/BinaryFormat/DXContainer.h"
13+
#include "llvm/Support/Compiler.h"
1414
#include <cstdint>
1515
#include <limits>
1616

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/include/llvm/Transforms/Utils/ProfileVerify.h

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

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

2020
namespace llvm {
2121
/// Inject MD_prof metadata where it's missing. Used for testing that passes

0 commit comments

Comments
 (0)